Skip to content

Commit 8fbc4d9

Browse files
Updated NPM user doc- Addressed PR comments by Hunter
1 parent fb72b6d commit 8fbc4d9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/aks/use-network-policies.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ $LOCATION=canadaeast
129129
Create a username to use as administrator credentials for your Windows Server containers on your cluster. The following command prompts you for a username. Set it to `$WINDOWS_USERNAME`(remember that the commands in this article are entered into a BASH shell).
130130

131131
```azurecli-interactive
132-
echo "Please enter the username to use as administrator credentials for Windows Server containers on your cluster: " && read $WINDOWS_USERNAME
132+
echo "Please enter the username to use as administrator credentials for Windows Server containers on your cluster: " && read WINDOWS_USERNAME
133133
```
134134

135135
Use the following command to create a cluster :
@@ -149,7 +149,7 @@ It takes a few minutes to create the cluster. By default, your cluster is create
149149
```azurecli
150150
az aks nodepool add \
151151
--resource-group $RESOURCE_GROUP_NAME \
152-
--name $CLUSTER_NAME \
152+
--cluster-name $CLUSTER_NAME \
153153
--os-type Windows \
154154
--name npwin \
155155
--node-count 1
@@ -171,7 +171,7 @@ If you plan on adding Windows node pools to your cluster, include the `windows-a
171171
Create a username to use as administrator credentials for your Windows Server containers on your cluster. The following command prompts you for a username. Set it to `$WINDOWS_USERNAME`(remember that the commands in this article are entered into a BASH shell).
172172

173173
```azurecli-interactive
174-
echo "Please enter the username to use as administrator credentials for Windows Server containers on your cluster: " && read $WINDOWS_USERNAME
174+
echo "Please enter the username to use as administrator credentials for Windows Server containers on your cluster: " && read WINDOWS_USERNAME
175175
```
176176

177177
```azurecli
@@ -189,7 +189,7 @@ It takes a few minutes to create the cluster. By default, your cluster is create
189189
```azurecli
190190
az aks nodepool add \
191191
--resource-group $RESOURCE_GROUP_NAME \
192-
--name $CLUSTER_NAME \
192+
--cluster-name $CLUSTER_NAME \
193193
--os-type Windows \
194194
--name npwin \
195195
--node-count 1

0 commit comments

Comments
 (0)