-
-
Save klingklangdev/c8b6543a68187f85266f4ad6614c21c4 to your computer and use it in GitHub Desktop.
AKS Deep Dive - Creating an AKS 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 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