Rename addon upgradeStrategy field to strategy

This commit is contained in:
rajashree
2020-03-31 11:20:43 -07:00
parent 3b4d47fe8f
commit 2541b554a2
@@ -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
```