Update VM size

This commit is contained in:
Mihaela Blendea
2018-10-26 13:25:59 -07:00
committed by GitHub
parent be51b38b50
commit 1b871d79f3
@@ -30,7 +30,7 @@ DOCKER_PASSWORD = input("Provide your Docker password:")
# Optionally change these configuration settings
#
AZURE_REGION=input("Provide Azure region - Press ENTER for using `westus`:") or "westus"
VM_SIZE=input("Provide VM size for the AKS cluster - Press ENTER for using `Standard_DS3_v2`:") or "Standard_DS3_v2"
VM_SIZE=input("Provide VM size for the AKS cluster - Press ENTER for using `Standard_E4s_v3`:") or "Standard_E4s_v3"
AKS_NODE_COUNT=input("Provide number of worker nodes for AKS cluster - Press ENTER for using `2`:") or "2"
#This is both Kubernetes cluster name and SQL Big Data cluster name
CLUSTER_NAME=input("Provide name of AKS cluster and SQL big data cluster - Press ENTER for using `sqlbigdata`:") or "sqlbigdata"