-
Notifications
You must be signed in to change notification settings - Fork 14
fix commandOverride for all charts #121
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
fix commandOverride for all charts #121
Conversation
Chart Installation Test succeeded ✅The chart installation test for commit Changed charts: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
amazing, thanks for fixing this! lgtm
@jmtx1020 Looks like the nitro chart needs a version bump! |
Will bump :) thanks for the headsup! |
…ity-helm-charts into fix/command-override-das
@jmtx1020 Thanks again for your contribution! |
Summary
.Values.extraEnv
to render when using commandOverride.Values.extraEnv
was completely ignored if using.Values.commandOverride.enable: true
Relay
Before
Prior to my changes, running the following:
With the following values:
values.yaml
Would result in the following error:
output.error.yaml
After
After this change has been made, we can apply these values:
values.yaml
Then we get the following in our statefulset, note the
containers.command
and thecontainers.args
output.success.yaml
DAS
Before
Prior to my changes, running the following:
With the following values:
values.yaml
Would result in the following error:
output.error.yaml
After
After this change has been made, we can apply these values:
values.yaml
Then we get the following in our deployment, note the
containers.command
and thecontainers.args
output.success.yaml
Nitro
Before
Prior to my changes, running the following:
With the following values:
values.yaml
Would result in the following error:
output.error.yaml
After
After this change has been made, we can apply these values:
values.yaml
Then we get the following in our statefulset, note the
containers.command
and thecontainers.args
output.success.yaml
DAS
Before
Prior to my changes, running the following:
With the following values:
values.yaml
Would result in the following error:
output.error.yaml
After
After this change has been made, we can apply these values:
values.yaml
Then we get the following in our statefulset, note the
containers.command
and thecontainers.args
output.success.yaml