I'd like to update a value config for a helm release on my cluster.
Something like
helm update -f new_values.yml nginx-controller
Information is cached locally, where it is used by commands like 'helm search'. You can optionally specify a list of repositories you want to update. $ helm repo update <repo_name> ... To update all the repositories, use 'helm repo update'.
helm upgrade -f ingress-controller/values.yml nginx-ingress stable/nginx-ingress
Or more generally:
helm upgrade -f new-values.yml {release name} {package name or path} --version {fixed-version}
The command above does the job.
Unless you manually specify the version with the --version {fixed-version}
argument, upgrade
will also update the chart version. You can find the current chart version with helm ls
.
Docs: https://helm.sh/docs/helm/#helm-upgrade
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With