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
Copy file name to clipboardExpand all lines: sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/AgentPoolInner.java
+28-10Lines changed: 28 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -509,11 +509,14 @@ public AgentPoolInner withMode(AgentPoolMode mode) {
509
509
}
510
510
511
511
/**
512
-
* Get the orchestratorVersion property: The version of Kubernetes running on the Agent Pool. As a best practice,
513
-
* you should upgrade all node pools in an AKS cluster to the same Kubernetes version. The node pool version must
514
-
* have the same major version as the control plane. The node pool minor version must be within two minor versions
515
-
* of the control plane version. The node pool version cannot be greater than the control plane version. For more
516
-
* information see [upgrading a node
512
+
* Get the orchestratorVersion property: The version of Kubernetes specified by the user. Both patch version
513
+
* <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are supported. When
514
+
* <major.minor> is specified, the latest supported GA patch version is chosen automatically. Updating the
515
+
* cluster with the same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will not trigger an
516
+
* upgrade, even if a newer patch version is available. As a best practice, you should upgrade all node pools in an
517
+
* AKS cluster to the same Kubernetes version. The node pool version must have the same major version as the control
518
+
* plane. The node pool minor version must be within two minor versions of the control plane version. The node pool
519
+
* version cannot be greater than the control plane version. For more information see [upgrading a node
Copy file name to clipboardExpand all lines: sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterAgentPoolProfileProperties.java
+50-17Lines changed: 50 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -157,18 +157,33 @@ public class ManagedClusterAgentPoolProfileProperties {
157
157
privateAgentPoolModemode;
158
158
159
159
/*
160
-
* The version of Kubernetes running on the Agent Pool. As a best practice,
161
-
* you should upgrade all node pools in an AKS cluster to the same
162
-
* Kubernetes version. The node pool version must have the same major
163
-
* version as the control plane. The node pool minor version must be within
164
-
* two minor versions of the control plane version. The node pool version
165
-
* cannot be greater than the control plane version. For more information
166
-
* see [upgrading a node
160
+
* The version of Kubernetes specified by the user. Both patch version
161
+
* <major.minor.patch> (e.g. 1.20.13) and <major.minor> (e.g. 1.20) are
162
+
* supported. When <major.minor> is specified, the latest supported GA
163
+
* patch version is chosen automatically. Updating the cluster with the
164
+
* same <major.minor> once it has been created (e.g. 1.14.x -> 1.14) will
165
+
* not trigger an upgrade, even if a newer patch version is available. As a
166
+
* best practice, you should upgrade all node pools in an AKS cluster to
167
+
* the same Kubernetes version. The node pool version must have the same
168
+
* major version as the control plane. The node pool minor version must be
169
+
* within two minor versions of the control plane version. The node pool
170
+
* version cannot be greater than the control plane version. For more
Copy file name to clipboardExpand all lines: sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/fluent/models/ManagedClusterInner.java
0 commit comments