From a4ea44bbf7e9d8461997122fa92214d32bbf00a9 Mon Sep 17 00:00:00 2001 From: Ryan Elliott-Smith <49007005+ryanelliottsmith@users.noreply.github.com> Date: Mon, 23 Nov 2020 12:01:02 +1300 Subject: [PATCH] Remove --reuse-values --- .../installation/upgrades-rollbacks/upgrades/ha/_index.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/content/rancher/v2.x/en/installation/upgrades-rollbacks/upgrades/ha/_index.md b/content/rancher/v2.x/en/installation/upgrades-rollbacks/upgrades/ha/_index.md index e6ed5656b37..b415647193b 100644 --- a/content/rancher/v2.x/en/installation/upgrades-rollbacks/upgrades/ha/_index.md +++ b/content/rancher/v2.x/en/installation/upgrades-rollbacks/upgrades/ha/_index.md @@ -114,12 +114,14 @@ helm upgrade rancher rancher-/rancher \ > **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: +Alternatively, it's possible to export the current values to a file and reference that file during upgrade. For example, to only change the Rancher version: ``` +helm get values rancher -n cattle-system -o yaml > values.yaml + helm upgrade rancher rancher-/rancher \ --namespace cattle-system \ - --reuse-values \ + -f values.yaml \ --version=2.4.5 ```