Skip to content

Commit 070b8a4

Browse files
committed
Capitalize Kubernetes, fix az aks formatting
1 parent 3674fa5 commit 070b8a4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/aks/learn/quick-windows-container-deploy-cli.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,16 @@ az aks create \
105105
>
106106
> If you do not specify an administrator username and password when setting `--vm-set-type VirtualMachineScaleSets` and `--network-plugin azure`, the username is set to *azureuser* and the password is set to a random value.
107107
>
108-
> The administrator username can't be changed, but you can change the administrator password your AKS cluster uses for Windows Server nodes using `az aks update`. For more details, see [Windows Server node pools FAQ][win-faq-change-admin-creds].
108+
> The administrator username can't be changed, but you can change the administrator password your AKS cluster uses for Windows Server nodes using `--az aks update`. For more details, see [Windows Server node pools FAQ][win-faq-change-admin-creds].
109109
110110
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.
111111

112112
## Add a Windows node pool
113-
By default, an AKS cluster is created with a node pool that can run Linux containers. Use `az aks nodepool add` command to add an additional node pool that can run Windows Server containers alongside the Linux node pool.
113+
By default, an AKS cluster is created with a node pool that can run Linux containers. Use `--az aks nodepool add` command to add an additional node pool that can run Windows Server containers alongside the Linux node pool.
114114

115-
AKS supports Windows Server 2019 and Windows Server 2022 node pools. For kubernetes versions "1.25.0" and higher, Windows Server 2022 is the default operating system. For earlier versions, Windows Server 2019 will be the default operating system.
115+
AKS supports Windows Server 2019 and Windows Server 2022 node pools. For Kubernetes versions "1.25.0" and higher, Windows Server 2022 is the default operating system. For earlier versions, Windows Server 2019 will be the default operating system.
116116

117-
Use `az aks nodepool add` command to add a Windows nodepool:
117+
Use `--az aks nodepool add` command to add a Windows nodepool:
118118

119119
```azurecli
120120
az aks nodepool add \
@@ -125,12 +125,12 @@ az aks nodepool add \
125125
--node-count 1
126126
```
127127

128-
The above command creates a new node pool named *npwin* and adds it to the *myAKSCluster*. The above command also uses the default subnet in the default vnet created when running `az aks create`. The OS SKU was not specified so the nodepool will be set to the default operating system based on the kubernetes version of the cluster.
128+
The above command creates a new node pool named *npwin* and adds it to the *myAKSCluster*. The above command also uses the default subnet in the default vnet created when running `--az aks create`. The OS SKU was not specified so the nodepool will be set to the default operating system based on the Kubernetes version of the cluster.
129129

130130

131131
## Add a Windows Server 2019 node pool
132132

133-
When creating a Windows node pool, the default operating system will be Windows Server 2019 for kubernetes versions below "1.25.0". To use Windows Server 2019 nodes when not default, you will need to specify an OS SKU type of `Windows2019`.
133+
When creating a Windows node pool, the default operating system will be Windows Server 2019 for Kubernetes versions below "1.25.0". To use Windows Server 2019 nodes when not default, you will need to specify an OS SKU type of `--Windows2019`.
134134

135135
```azurecli-interactive
136136
az aks nodepool add \
@@ -142,16 +142,16 @@ az aks nodepool add \
142142
--node-count 1
143143
```
144144

145-
The above command creates a new Windows Server 2019 node pool named *npwin* and adds it to the *myAKSCluster*. The above command also uses the default subnet in the default vnet created when running `az aks create`.
145+
The above command creates a new Windows Server 2019 node pool named *npwin* and adds it to the *myAKSCluster*. The above command also uses the default subnet in the default vnet created when running `--az aks create`.
146146

147147
## Add a Windows Server 2022 node pool
148148

149-
When creating a Windows node pool, the default operating system will be Windows Server 2022 for kubernetes versions "1.25.0" and higher. To use Windows Server 2022 nodes when not default, you will need to specify an OS SKU type of `Windows2022`.
149+
When creating a Windows node pool, the default operating system will be Windows Server 2022 for Kubernetes versions "1.25.0" and higher. To use Windows Server 2022 nodes when not default, you will need to specify an OS SKU type of `--Windows2022`.
150150

151151
> [!NOTE]
152152
> Windows Server 2022 requires Kubernetes version "1.23.0" or higher.
153153
154-
Use `az aks nodepool add` command to add a Windows Server 2022 node pool:
154+
Use `--az aks nodepool add` command to add a Windows Server 2022 node pool:
155155

156156
```azurecli
157157
az aks nodepool add \

0 commit comments

Comments
 (0)