Skip to content

Commit 6445b55

Browse files
author
naman-msft
committed
updated docs
1 parent 0722745 commit 6445b55

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

scenarios/azure-aks-docs/articles/aks/azure-cni-powered-by-cilium.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ Use the following command to create a resource group. Environment variables are
8686
```azurecli-interactive
8787
export RANDOM_SUFFIX=$(openssl rand -hex 3)
8888
export RESOURCE_GROUP="myResourceGroup$RANDOM_SUFFIX"
89-
export LOCATION="EastUS2"
89+
export REGION="EastUS2"
9090
9191
az group create \
9292
--name $RESOURCE_GROUP \
93-
--location $LOCATION
93+
--location $REGION
9494
```
9595

9696
Result:
@@ -115,7 +115,7 @@ export CLUSTER_NAME="myAKSCluster$RANDOM_SUFFIX"
115115
az aks create \
116116
--name $CLUSTER_NAME \
117117
--resource-group $RESOURCE_GROUP \
118-
--location $LOCATION \
118+
--location $REGION \
119119
--network-plugin azure \
120120
--network-plugin-mode overlay \
121121
--pod-cidr 192.168.0.0/16 \

scenarios/metadata.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1650,6 +1650,12 @@
16501650
"commandKey": "AKS_CLUSTER",
16511651
"title": "AKS Cluster Name",
16521652
"defaultValue": ""
1653+
},
1654+
{
1655+
"inputType": "textInput",
1656+
"commandKey": "AKS_NODEPOOL",
1657+
"title": "AKS Node Pool Name",
1658+
"defaultValue": ""
16531659
}
16541660
]
16551661
}

0 commit comments

Comments
 (0)