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: articles/aks/tutorial-kubernetes-upgrade-cluster.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Kubernetes on Azure tutorial - Upgrade a cluster
3
3
description: In this Azure Kubernetes Service (AKS) tutorial, you learn how to upgrade an existing AKS cluster to the latest available Kubernetes version.
4
4
services: container-service
5
5
ms.topic: tutorial
6
-
ms.date: 12/19/2018
6
+
ms.date: 02/25/2020
7
7
8
8
ms.custom: mvc
9
9
@@ -35,12 +35,12 @@ Before you upgrade a cluster, use the [az aks get-upgrades][] command to check w
35
35
az aks get-upgrades --resource-group myResourceGroup --name myAKSCluster --output table
36
36
```
37
37
38
-
In the following example, the current version is *1.13.10*, and the available versions are shown under the *Upgrades* column.
38
+
In the following example, the current version is *1.14.8*, and the available versions are shown under the *Upgrades* column.
39
39
40
40
```
41
41
Name ResourceGroup MasterVersion NodePoolVersion Upgrades
@@ -56,13 +56,13 @@ To minimize disruption to running applications, AKS nodes are carefully cordoned
56
56
Use the [az aks upgrade][] command to upgrade the AKS cluster. The following example upgrades the cluster to Kubernetes version *1.14.6*.
57
57
58
58
> [!NOTE]
59
-
> You can only upgrade one minor version at a time. For example, you can upgrade from *1.12.x* to *1.13.x*, but cannot upgrade from *1.12.x* to *1.14.x* directly. To upgrade from *1.12.x* to *1.14.x*, first upgrade from *1.12.x* to *1.13.x*, then perform another upgrade from *1.13.x* to *1.14.x*.
59
+
> You can only upgrade one minor version at a time. For example, you can upgrade from *1.14.x* to *1.15.x*, but cannot upgrade from *1.14.x* to *1.16.x* directly. To upgrade from *1.14.x* to *1.16.x*, first upgrade from *1.14.x* to *1.15.x*, then perform another upgrade from *1.15.x* to *1.16.x*.
60
60
61
61
```azurecli
62
-
az aks upgrade --resource-group myResourceGroup --name myAKSCluster --kubernetes-version 1.14.6
62
+
az aks upgrade --resource-group myResourceGroup --name myAKSCluster --kubernetes-version 1.15.5
63
63
```
64
64
65
-
The following condensed example output shows the *kubernetesVersion* now reports *1.14.6*:
65
+
The following condensed example output shows the *kubernetesVersion* now reports *1.15.5*:
66
66
67
67
```json
68
68
{
@@ -80,7 +80,7 @@ The following condensed example output shows the *kubernetesVersion* now reports
0 commit comments