-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EnvValueFrom Secret EMAIL Password Not being Used #135
Comments
Hey, I just came across this issue while trying to figure out how to pass env vars from secret in this helm chart. I don't know why you're using Try using For example, I have it setup to get the environment variables from a secret using global:
envFrom:
- secretRef:
name: authentik-config and then specifying the required variables in the secret like so apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: authentik-config
stringData:
AUTHENTIK_SECRET_KEY: "MySecretKey"
AUTHENTIK_EMAIL__PASSWORD: "MySuperSecureEmailPassword"
... Hope this get's it working for you 😄 |
I had the same issue with
|
I'll go ahead and close this since it seems fixed. Feel free to re-open an issue for any further issues. |
Error Message:
My configuration:
The strange thing is that when I pass the
email.password
value directly in plain text to the config, it works. However, when I leave theemail.password
value empty and instead pass the value from a secret using theenvValueFrom
construct, it will still show up that the environment variable is correct on the Pod, but when I attempt to send the email I get the above error message.Can anyone with more knowledge help me out here? I am new to Authentik.
Thanks :)
The text was updated successfully, but these errors were encountered: