Last active
July 30, 2020 02:04
-
-
Save dollarpo7/59337aa85dca8d8e5fb5d00e9e438283 to your computer and use it in GitHub Desktop.
Create an AKS using CLI
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
| #!/bin/bash | |
| az group create --name dolaz-aks-prod-rg --location westus2 | |
| az aks create \ | |
| --resource-group dolaz-aks-prod-rg \ | |
| --name cs-prod \ | |
| --node-count 1 \ | |
| --generate-ssh-keys | |
| az aks get-credentials --resource-group dolaz-aks-prod-rg --name dolaz-prod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment