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
default
Currently, we're computing a Helm expression for provided parameters where a default function is added in case the value is provided.
In our case, this default function is redundant since the value will also be added to the generated values.yaml file.
values.yaml
The default function is problematic when dealing with non-string variables.
Since the function is redundant, it's better to just remove it from the generated helm expression.
The text was updated successfully, but these errors were encountered:
manusa
Successfully merging a pull request may close this issue.
Description
Currently, we're computing a Helm expression for provided parameters where a
default
function is added in case the value is provided.In our case, this default function is redundant since the value will also be added to the generated
values.yaml
file.The
default
function is problematic when dealing with non-string variables.Since the function is redundant, it's better to just remove it from the generated helm expression.
The text was updated successfully, but these errors were encountered: