Replies: 1 comment
-
As of chart version |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I use the official helm chart (1.4.0) for a deployment (2.2.4). I'm adding Google OpenID Connect to our deployment. I'm trying to find the best setup for passing secrets to
webserver_config.py
. At the moment, I addedCLIENT_ID
andCLIENT_SECRET
toenv
, but this means that those two secrets will show up as environment variables in each pod, including the task pods. I'd rather restrict them to the webserver pod only.One possible solution would be to use templating in
webserverConfig
. Is there a way to do this? Or, more generally, is there a way to ensure those secrets are available only on the webserver pod?This is the current setup in my values override file (
client_id
andclient_secret
lines)Thanks!
Beta Was this translation helpful? Give feedback.
All reactions