Upgrade the Helm chart
Use the following instructions to upgrade the chart to a new release.
Use the following command to obtain the release name for the earlier release.
$ helm ls -n <namespace>
Retrieve the values for the earlier release.
$ helm get values my-release > old_values.yaml
Change the values of the
old\_values.yaml
file as required.Use the
helm upgrade
command to update the chart.$ helm upgrade my-release harness/harness-demo -n <namespace> -f old_values.yaml