Created
June 1, 2020 00:29
-
-
Save moosebay/5cdf6372f510c8ab6a9be1646768cd77 to your computer and use it in GitHub Desktop.
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 aks create \ | |
--resource-group YOUR_RESOURCE_GROUP_NAME \ | |
--name AKS \ | |
--load-balancer-sku standard \ | |
--enable-private-cluster \ | |
--network-plugin azure \ | |
--vnet-subnet-id YOUR_SUBNET_ID \ | |
--docker-bridge-address 172.17.0.1/16 \ | |
--dns-service-ip 10.11.0.10 \ | |
--service-cidr 10.11.0.0/24 |
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 aks get-credentials --name AKS --resource-group YOUR_RESOURCE_GROUP_NAME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment