We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Try to centralize all secrets for config in one place, and found out that signing-key is set up in Helm and not SIGNING_KEY.
signing-key
SIGNING_KEY
The helm values important lines are:
# values.yaml config: existingSigningKeySecret: pomerium-secrets # pomerium-secrets k8s file --- kind: Secret stringData: ... SIGNING_KEY: ---REDACTED--- ...
Because helm expects the key to be signing-key
Use SIGNING_KEY as key and Helm should accept.
... config: existingSigningKeySecret: pomerium-secrets ...
kubectl get secret pomerium -o=jsonpath="{.data['config\.yaml']}" | base64 -D
# irrelevant
# forgot to record the full logs but it should basically tell the existing secret does not have a key named signing-key.
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
Try to centralize all secrets for config in one place, and found out that
signing-key
is set up in Helm and notSIGNING_KEY
.The helm values important lines are:
Because helm expects the key to be
signing-key
What did you expect to happen?
Use
SIGNING_KEY
as key and Helm should accept.Steps to reproduce
What's your environment like?
What are your chart values?
What are the contents of your config secret?
kubectl get secret pomerium -o=jsonpath="{.data['config\.yaml']}" | base64 -D
# irrelevant
What did you see in the logs?
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: