Skip to content

Commit 5fbfc1d

Browse files
authored
Merge pull request #105533 from laurenhughes/patch-1
Update version number
2 parents af58d99 + b9ad828 commit 5fbfc1d

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Kubernetes on Azure tutorial - Deploy a cluster
33
description: In this Azure Kubernetes Service (AKS) tutorial, you create an AKS cluster and use kubectl to connect to the Kubernetes master node.
44
services: container-service
55
ms.topic: tutorial
6-
ms.date: 12/19/2018
6+
ms.date: 02/25/2020
77

88
ms.custom: mvc
99

@@ -71,7 +71,7 @@ To verify the connection to your cluster, run the [kubectl get nodes][kubectl-ge
7171
$ kubectl get nodes
7272
7373
NAME STATUS ROLES AGE VERSION
74-
aks-nodepool1-12345678-0 Ready agent 32m v1.13.10
74+
aks-nodepool1-12345678-0 Ready agent 32m v1.14.8
7575
```
7676

7777
## Next steps

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Kubernetes on Azure tutorial - Upgrade a cluster
33
description: In this Azure Kubernetes Service (AKS) tutorial, you learn how to upgrade an existing AKS cluster to the latest available Kubernetes version.
44
services: container-service
55
ms.topic: tutorial
6-
ms.date: 12/19/2018
6+
ms.date: 02/25/2020
77

88
ms.custom: mvc
99

@@ -35,12 +35,12 @@ Before you upgrade a cluster, use the [az aks get-upgrades][] command to check w
3535
az aks get-upgrades --resource-group myResourceGroup --name myAKSCluster --output table
3636
```
3737

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.
3939

4040
```
4141
Name ResourceGroup MasterVersion NodePoolVersion Upgrades
4242
------- --------------- --------------- ----------------- --------------
43-
default myResourceGroup 1.13.10 1.13.10 1.14.5, 1.14.6
43+
default myResourceGroup 1.14.8 1.14.8 1.15.5, 1.15.7
4444
```
4545

4646
## Upgrade a cluster
@@ -56,13 +56,13 @@ To minimize disruption to running applications, AKS nodes are carefully cordoned
5656
Use the [az aks upgrade][] command to upgrade the AKS cluster. The following example upgrades the cluster to Kubernetes version *1.14.6*.
5757

5858
> [!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*.
6060
6161
```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
6363
```
6464

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*:
6666

6767
```json
6868
{
@@ -80,7 +80,7 @@ The following condensed example output shows the *kubernetesVersion* now reports
8080
"enableRbac": false,
8181
"fqdn": "myaksclust-myresourcegroup-19da35-bd54a4be.hcp.eastus.azmk8s.io",
8282
"id": "/subscriptions/<Subscription ID>/resourcegroups/myResourceGroup/providers/Microsoft.ContainerService/managedClusters/myAKSCluster",
83-
"kubernetesVersion": "1.14.6",
83+
"kubernetesVersion": "1.15.5",
8484
"location": "eastus",
8585
"name": "myAKSCluster",
8686
"type": "Microsoft.ContainerService/ManagedClusters"
@@ -95,12 +95,12 @@ Confirm that the upgrade was successful using the [az aks show][] command as fol
9595
az aks show --resource-group myResourceGroup --name myAKSCluster --output table
9696
```
9797

98-
The following example output shows the AKS cluster runs *KubernetesVersion 1.14.6*:
98+
The following example output shows the AKS cluster runs *KubernetesVersion 1.15.5*:
9999

100100
```
101101
Name Location ResourceGroup KubernetesVersion ProvisioningState Fqdn
102102
------------ ---------- --------------- ------------------- ------------------- ----------------------------------------------------------------
103-
myAKSCluster eastus myResourceGroup 1.14.6 Succeeded myaksclust-myresourcegroup-19da35-bd54a4be.hcp.eastus.azmk8s.io
103+
myAKSCluster eastus myResourceGroup 1.15.5 Succeeded myaksclust-myresourcegroup-19da35-bd54a4be.hcp.eastus.azmk8s.io
104104
```
105105

106106
## Delete the cluster

0 commit comments

Comments
 (0)