hi all - Does lakefs cache hook configurations? I ...
# help
c
hi all - Does lakefs cache hook configurations? I ran into a cert problem for the target of a webhook, so I updated the hook configuration to use
http
instead of
https
as a temp workaround, but lakeFS still seems to be targeting the
https
url
b
yes for 5 seconds.
also make sure you commit your change to the right branch
c
Is there any documentation on how to configure lakefs to accept self-signed certs in the context of webhook calls?
b
Working with custom certificates are usually in the OS level. Suggest to build a docker image based on lakefs and add your ca certificate. The following is an example of such Dockerfile
Copy code
FROM treeverse/lakefs:0.103.0
USER root
COPY myca.crt /usr/local/share/ca-certificates
RUN /usr/sbin/update-ca-certificates
USER lakefs
gratitude thank you 1