Skip to content

Instantly share code, notes, and snippets.

@dollarpo7
Last active July 30, 2020 02:04
Show Gist options
  • Select an option

  • Save dollarpo7/59337aa85dca8d8e5fb5d00e9e438283 to your computer and use it in GitHub Desktop.

Select an option

Save dollarpo7/59337aa85dca8d8e5fb5d00e9e438283 to your computer and use it in GitHub Desktop.
Create an AKS using CLI
#!/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