Skip to content

Instantly share code, notes, and snippets.

@klingklangdev
Forked from chadmcrowell/aks-up.sh
Created December 1, 2020 22:31
Show Gist options
  • Save klingklangdev/c8b6543a68187f85266f4ad6614c21c4 to your computer and use it in GitHub Desktop.
Save klingklangdev/c8b6543a68187f85266f4ad6614c21c4 to your computer and use it in GitHub Desktop.
AKS Deep Dive - Creating an AKS Cluster
az ad sp create-for-rbac \
--skip-assignment
az aks create \
--resource-group myResourceGroup \
--name myAKSCluster \
--node-count 1 \
--enable-addons monitoring \
--generate-ssh-keys \
--service-principal "208-1029....."
--client-secret "ba208-202......"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment