diff --git a/content/rancher/v2.x/en/upgrades/upgrades/ha/_index.md b/content/rancher/v2.x/en/upgrades/upgrades/ha/_index.md index 89d2333b42e..ced895cff97 100644 --- a/content/rancher/v2.x/en/upgrades/upgrades/ha/_index.md +++ b/content/rancher/v2.x/en/upgrades/upgrades/ha/_index.md @@ -101,7 +101,16 @@ helm upgrade rancher rancher-/rancher \ --set hostname=rancher.my.org ``` -> **Note:** There will be many more options from the previous step that need to be appended. +> **Note:** The above is an example, there may be more values from the previous step that need to be appended. + +Alternatively, it's possible to reuse current values and make small changes with the `--reuse-values` flag. For example, to only change the Rancher version: + +``` +helm upgrade rancher rancher-/rancher \ + --namespace cattle-system \ + --reuse-values \ + --version=2.4.5 +``` {{% /accordion %}}