Created
June 29, 2023 21:46
-
-
Save scottisloud/ec9b083e0dee68bd3457b48cba5ec35b to your computer and use it in GitHub Desktop.
AKS command to create new cluster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| az aks create --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME \ | |
| --node-count 2 \ | |
| --node-vm-size Standard_B2s \ | |
| --location $REGION \ | |
| --vnet-subnet-id "$SUBNET_ID" \ | |
| --generate-ssh-keys |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment