File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
azure-aks-docs/articles/aks Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -86,11 +86,11 @@ Use the following command to create a resource group. Environment variables are
8686``` azurecli-interactive
8787export RANDOM_SUFFIX=$(openssl rand -hex 3)
8888export RESOURCE_GROUP="myResourceGroup$RANDOM_SUFFIX"
89- export LOCATION ="EastUS2"
89+ export REGION ="EastUS2"
9090
9191az group create \
9292 --name $RESOURCE_GROUP \
93- --location $LOCATION
93+ --location $REGION
9494```
9595
9696Result:
@@ -115,7 +115,7 @@ export CLUSTER_NAME="myAKSCluster$RANDOM_SUFFIX"
115115az 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 \
Original file line number Diff line number Diff line change 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 }
You can’t perform that action at this time.
0 commit comments