Skip to content

Commit 7b17f48

Browse files
committed
- Updated command parameters to mach current spec
- Updated command output to match current - Updated Kubernetes versions
1 parent 478c8be commit 7b17f48

File tree

1 file changed

+24
-19
lines changed

1 file changed

+24
-19
lines changed

articles/aks/tutorial-kubernetes-upgrade-cluster.md

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ If using Azure PowerShell, this tutorial requires Azure PowerShell version 5.9.0
6969
7070
```azurepowershell-interactive
7171
Get-AzAksCluster -ResourceGroupName myResourceGroup -Name myAKSCluster |
72-
Select-Object -Property Name, KubernetesVersion, Location
72+
Select-Object -Property Name, CurrentKubernetesVersion, Location
7373
```
7474
75-
The following example output shows the current version as *1.26.6* and the location as *eastus*:
75+
The following example output shows the current version as *1.28.9* and the location as *eastus*:
7676
7777
```output
78-
Name KubernetesVersion Location
79-
---- ----------------- --------
80-
myAKSCluster 1.26.6 eastus
78+
Name CurrentKubernetesVersion Location
79+
---- ------------------------ --------
80+
myAKSCluster 1.28.9 eastus
8181
```
8282
8383
2. Check which Kubernetes upgrade releases are available in the region where your cluster resides using the [`Get-AzAksVersion`][get-azaksversion] cmdlet.
@@ -91,8 +91,11 @@ If using Azure PowerShell, this tutorial requires Azure PowerShell version 5.9.0
9191
```output
9292
Default IsPreview OrchestratorType OrchestratorVersion
9393
------- --------- ---------------- -------------------
94-
Kubernetes 1.27.1
95-
Kubernetes 1.27.3
94+
Kubernetes 1.29.4
95+
Kubernetes 1.29.2
96+
True Kubernetes 1.28.9
97+
Kubernetes 1.28.5
98+
...
9699
```
97100
98101
### [Azure portal](#tab/azure-portal)
@@ -193,15 +196,17 @@ You can either [manually upgrade your cluster](#manually-upgrade-cluster) or [co
193196
The following example output shows the result of upgrading to *1.29.2*. Notice the `KubernetesVersion` now shows *1.29.2*:
194197
195198
```output
196-
ProvisioningState : Succeeded
197-
MaxAgentPools : 100
198-
KubernetesVersion : 1.29.2
199-
PrivateFQDN :
200-
AgentPoolProfiles : {default}
201-
Name : myAKSCluster
202-
Type : Microsoft.ContainerService/ManagedClusters
203-
Location : eastus
204-
Tags : {}
199+
...
200+
ProvisioningState : Succeeded
201+
MaxAgentPools : 100
202+
KubernetesVersion : 1.29.2
203+
CurrentKubernetesVersion : 1.29.2
204+
...
205+
ResourceGroupName : myResourceGroup
206+
Name : myAKSCluster
207+
Type : Microsoft.ContainerService/ManagedClusters
208+
Location : eastus
209+
Tags :
205210
```
206211
207212
#### [Azure portal](#tab/azure-portal)
@@ -311,9 +316,9 @@ AKS regularly provides new node images. Linux node images are updated weekly, an
311316
The following example output shows the AKS cluster runs *KubernetesVersion 1.27.3*:
312317
313318
```output
314-
Name Location KubernetesVersion ProvisioningState
315-
---- -------- ----------------- -----------------
316-
myAKSCluster eastus 1.27.3 Succeeded
319+
Name Location KubernetesVersion ProvisioningState
320+
---- -------- ----------------- -----------------
321+
myAKSCluster eastus 1.29.2 Succeeded
317322
```
318323
319324
### [Azure portal](#tab/azure-portal)

0 commit comments

Comments
 (0)