Skip to content

Commit 97293b7

Browse files
authored
Fixed AKS version issue in windows-container-cli doc
1 parent b165c3f commit 97293b7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

articles/aks/windows-container-cli.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ az aks create \
134134
--name myAKSCluster \
135135
--node-count 2 \
136136
--enable-addons monitoring \
137-
--kubernetes-version 1.14.6 \
137+
--kubernetes-version 1.15.5 \
138138
--generate-ssh-keys \
139139
--windows-admin-password $PASSWORD_WIN \
140140
--windows-admin-username azureuser \
@@ -147,6 +147,10 @@ az aks create \
147147
> If you get a password validation error, try creating your resource group in another region.
148148
> Then try creating the cluster with the new resource group.
149149
150+
> [!Note]
151+
> If you are unable to create the AKS cluster because the version is not supported in this region then you can use the [az aks get-versions --location eastus] command to find the supported version list for this region.
152+
153+
150154
After a few minutes, the command completes and returns JSON-formatted information about the cluster. Occasionally the cluster can take longer than a few minutes to provision. Allow up to 10 minutes in these cases.
151155

152156
## Add a Windows Server node pool
@@ -160,7 +164,7 @@ az aks nodepool add \
160164
--os-type Windows \
161165
--name npwin \
162166
--node-count 1 \
163-
--kubernetes-version 1.14.6
167+
--kubernetes-version 1.15.5
164168
```
165169

166170
The above command creates a new node pool named *npwin* and adds it to the *myAKSCluster*. When creating a node pool to run Windows Server containers, the default value for *node-vm-size* is *Standard_D2s_v3*. If you choose to set the *node-vm-size* parameter, please check the list of [restricted VM sizes][restricted-vm-sizes]. The minimum recommended size is *Standard_D2s_v3*. The above command also uses the default subnet in the default vnet created when running `az aks create`.

0 commit comments

Comments
 (0)