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
Providing custom licenseKey.secretName makes pods unable to start due to secret not found.
licenseKey.secretName
helm repo add edge-stack https://s3.amazonaws.com/datawire-static-files/charts helm repo update helm install edge-stack edge-stack/edge-stack --set licenseKey.secretName=license-secret
Here .Values.licenseKey.secretName is resolved in the context of the subchart (emissary-ingress), where this value doesn't exist.
.Values.licenseKey.secretName
emissary-ingress
edge-stack/charts/edge-stack/values.yaml
Lines 52 to 59 in 16acdfb
It is possible to get this deployed correctly if both licenseKey.secretName and emissary-ingress.licenseKey.secretName are set like so:
emissary-ingress.licenseKey.secretName
helm upgrade edge-stack edge-stack/edge-stack --set licenseKey.secretName=license-secret --set emissary-ingress.licenseKey.secretName=license-secret
This can be fixed by moving licenseKey parameter to global: block. This will make it available in both edge-stack and emissary-ingress charts context.
licenseKey
global:
edge-stack
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
Providing custom
licenseKey.secretName
makes pods unable to start due to secret not found.How to reproduce
Reason
Here
.Values.licenseKey.secretName
is resolved in the context of the subchart (emissary-ingress
), where this value doesn't exist.edge-stack/charts/edge-stack/values.yaml
Lines 52 to 59 in 16acdfb
It is possible to get this deployed correctly if both
licenseKey.secretName
andemissary-ingress.licenseKey.secretName
are set like so:Possible solution
This can be fixed by moving
licenseKey
parameter toglobal:
block. This will make it available in bothedge-stack
andemissary-ingress
charts context.The text was updated successfully, but these errors were encountered: