From 2541b554a25c425ade48c53cf566ecbac75cc2e9 Mon Sep 17 00:00:00 2001 From: rajashree Date: Tue, 31 Mar 2020 11:20:43 -0700 Subject: [PATCH] Rename addon upgradeStrategy field to strategy --- .../en/upgrades/configuring-strategy/_index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/rke/latest/en/upgrades/configuring-strategy/_index.md b/content/rke/latest/en/upgrades/configuring-strategy/_index.md index 14a5bb113b1..e9e8ce188c5 100644 --- a/content/rke/latest/en/upgrades/configuring-strategy/_index.md +++ b/content/rke/latest/en/upgrades/configuring-strategy/_index.md @@ -59,13 +59,13 @@ An example configuration of the Ingress and network addons is shown below: ingress: provider: nginx update_strategy: - type: RollingUpdate + strategy: RollingUpdate rollingUpdate: maxUnavailable: 5 network: plugin: canal update_strategy: - type: RollingUpdate + strategy: RollingUpdate rollingUpdate: maxUnavailable: 6 ``` @@ -101,7 +101,7 @@ An example configuration of the DNS and monitoring addons is shown below: dns: provider: coredns update_strategy: - type: RollingUpdate + strategy: RollingUpdate rollingUpdate: maxUnavailable: 20% maxSurge: 15% @@ -114,7 +114,7 @@ dns: monitoring: provider: metrics-server update_strategy: - type: RollingUpdate + strategy: RollingUpdate rollingUpdate: maxUnavailable: 8 ``` @@ -140,19 +140,19 @@ upgrade_strategy: ingress: provider: nginx update_strategy: # Available in v2.4 - type: RollingUpdate + strategy: RollingUpdate rollingUpdate: maxUnavailable: 5 network: plugin: canal update_strategy: # Available in v2.4 - type: RollingUpdate + strategy: RollingUpdate rollingUpdate: maxUnavailable: 6 dns: provider: coredns update_strategy: # Available in v2.4 - type: RollingUpdate + strategy: RollingUpdate rollingUpdate: maxUnavailable: 20% maxSurge: 15% @@ -165,7 +165,7 @@ dns: monitoring: provider: metrics-server update_strategy: # Available in v2.4 - type: RollingUpdate + strategy: RollingUpdate rollingUpdate: maxUnavailable: 8 ```