https://lakefs.io/ logo
#help
Title
c

Christopher Burke

06/12/2023, 8:24 PM
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

Barak Amar

06/12/2023, 8:36 PM
yes for 5 seconds.
also make sure you commit your change to the right branch
c

Christopher Burke

06/13/2023, 7:36 PM
Is there any documentation on how to configure lakefs to accept self-signed certs in the context of webhook calls?
b

Barak Amar

06/14/2023, 8:25 AM
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
2 Views