getredash / contrib-helm-chart

Community maintained Redash Helm Chart
Apache License 2.0
163 stars 143 forks source link

Helm chart issue: Self managed secrets not propagated to pods #188

Open wfdevopsteam opened 2 months ago

wfdevopsteam commented 2 months ago

Hello!

We're setting up Redash using the helmchart provided and using the following value:

redash:
  selfManagedSecrets: true
  envSecretName: redash

Our secret looks like this:

apiVersion: v1
data:
  cookieSecret: <value>
  googleClientSecret: ""
  ldapBindDnPassword: ""
  mailPassword: ""
  secretKey: <value>
kind: Secret
metadata:

Even with this set we keep getting this exception: Exception: You must set the REDASH_COOKIE_SECRET environment variable. Visit http://redash.io/help/open-source/admin-guide/secrets for more information.

Setting the secrets using the "normal" way works, but we don't want to do this since we're version controlling the helm chart values.

Many thanks in advance!