You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had the same problem with adding authentication provider secrets and was able to resolve the issue with using envFromSecret in values.yaml
# values.yamlenvFromSecret: "my-secret-name"
Then create a kubernetes secret with data values for the required environment variables. For example the required auth env variables were GF_AUTH_GOOGLE_CLIENT_ID and GF_AUTH_GOOGLE_CLIENT_SECRET. For postgres these are probably something like GF_DATABASE_USER, GF_DATABASE_PASSWORD, etc but im not fully sure about that.
The root problem is that the grafana.ini file is written as plain text in a ConfigMap which can be bypassed with assertNoLeakedSecrets but that is not recommended.
I use helm for deploying grafana
and in argocd i receive
as i know its should be fixed since 7.2.2, but i can't understand what im doing wrong
The text was updated successfully, but these errors were encountered: