Skip to content

Instantly share code, notes, and snippets.

@moosebay
Created June 1, 2020 00:29
Show Gist options
  • Save moosebay/5cdf6372f510c8ab6a9be1646768cd77 to your computer and use it in GitHub Desktop.
Save moosebay/5cdf6372f510c8ab6a9be1646768cd77 to your computer and use it in GitHub Desktop.
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
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