You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: in this case the system will infer the list of intermediate version for workers from the list of control plane versions, taking
@@ -207,9 +207,9 @@ Implementers of this runtime extension can also support more sophisticated use c
207
207
208
208
```yaml
209
209
...
210
-
controlPlaneVersions:
211
-
- v1.30.0
212
-
- v1.30.1
210
+
controlPlaneUpgrades:
211
+
- version: v1.30.0
212
+
- version: v1.30.1
213
213
- ...
214
214
```
215
215
@@ -222,29 +222,30 @@ care of performing the minimum number of workers upgrade by taking into account
222
222
223
223
```yaml
224
224
...
225
-
controlPlaneVersions:
226
-
- v1.30.0
227
-
- v1.31.0
228
-
- v1.32.3
229
-
workersVersions:
230
-
- v1.30.0
225
+
controlPlaneUpgrades:
226
+
- version: v1.30.0
227
+
- version: v1.31.0
228
+
- version: v1.32.3
229
+
workersUpgrades:
230
+
- version: v1.30.0
231
+
- version: v1.32.3
231
232
```
232
233
233
-
Note: in this case the system will take into consideration the provided `workersVersions`, but if required by the [Kubernetes version skew policy](https://kubernetes.io/releases/version-skew-policy/),
234
-
also add necessary intermediate version for workers inferred from the list of control plane versions.
234
+
Note: in this case the system will take into consideration the provided `workersUpgrades`, and validated it is
235
+
consistent with `controlPlaneUpgrades` and also compliant with the [Kubernetes version skew policy](https://kubernetes.io/releases/version-skew-policy/).
235
236
236
237
- Force workers to upgrade to all the intermediate steps (opt out from efficient upgrades).
0 commit comments