Created
February 5, 2020 19:34
-
-
Save chadmcrowell/335f01f0ba6aaa15a9c51e64139e5d63 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