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
Add the ability to edit existing helm release values in a text editor.
Command example
helm release values edit <RELEASE NAME>
The command Opens a text editor with the current release values. The values are applied after the changes are saved.
Design
# Create tmp file TMPFILE=$(mktemp) # get values to helm get values <RELEASE> > $(echo $TMPFILE) # Remove strings "USER-SUPPLIED VALUES:" sed -i '/USER-SUPPLIED VALUES:/d' $TMPFILE # Open default text editor "${EDITOR:-vi}" $TMPFILE # Apply values helm release upgrade <RELEASE> --values $TMPFILE # Delete tmp file rm -f $TMPFILE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add the ability to edit existing helm release values in a text editor.
Command example
The command Opens a text editor with the current release values. The values are applied after the changes are saved.
Design
The text was updated successfully, but these errors were encountered: