-
Hello, In order for us to get LDAPS (and certificates to authenticate with AD) to work with Intel Owl, our process is a bit manual. We have to do the following
Is there a way we can add the above and update-ca-certificates to the dockerfile? If so, how would we accomplish this? Please and thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey! Certificates are to be considered as secrets so we cannot add them in the build in the Dockerfile. On the contrary, we can upload them at the time of the container execution, via docker-compose. Are you following the official doc and using this configuration in the python file, right? https://intelowl.readthedocs.io/en/latest/Advanced-Usage.html#ldap Referring to that configuration, one possible solution is the following one but still requires a customization by your side: Add this to the
In
in that
|
Beta Was this translation helpful? Give feedback.
Hey!
Certificates are to be considered as secrets so we cannot add them in the build in the Dockerfile. On the contrary, we can upload them at the time of the container execution, via docker-compose.
Are you following the official doc and using this configuration in the python file, right? https://intelowl.readthedocs.io/en/latest/Advanced-Usage.html#ldap
Referring to that configuration, one possible solution is the following one but still requires a customization by your side:
Add this to the
default.yml
docker-compose file (mount the folder with the certificates in the uwsgi container):In
settings.py
extract t…