Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created August 8, 2019 11:25
Show Gist options
  • Select an option

  • Save selcukusta/46cc6cd1f413f58e139cf346c6d76b51 to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/46cc6cd1f413f58e139cf346c6d76b51 to your computer and use it in GitHub Desktop.
az group create \
--name "[CLUSTER_RESOURCE_GROUP_NAME]" \
--location "[CLUSTER_RESOURCE_GROUP_LOCATION]"
az aks create \
--name "[CLUSTER_NAME]" \
--resource-group "[CLUSTER_RESOURCE_GROUP_NAME]" \
--dns-name-prefix "[CLUSTTER_DNS_PREFIX]" \
--kubernetes-version "1.12.7" \
--location "[CLUSTER_LOCATION]" \
--node-count 3 \
--node-vm-size "Standard_D4s_v3" \
--enable-addons monitoring \
--vnet-subnet-id "[CLUSTER_SUBNET_ID]" \
--max-pods 250 \
--tags "Tier=Production" \
--admin-username "[CLUSTER_ADMIN_USER_NAME]" \
--generate-ssh-keys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment