If config secret is not the right place to set thi...
# automation-api
m
If config secret is not the right place to set this value, what’s the best practice for setting this inside a docker container running on Kubernetes? Setting it as an env variable inside the cluster doesn’t seem the most secure?
b
Kubernetes supports the concept of secrets that are provided as environment variables to pods out of the box
m
Ah right - this must be the right way to do this
Thank you!