Skip to content

Commit 66bbc4d

Browse files
Update VM size
1 parent dd0cda5 commit 66bbc4d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

samples/features/sql-big-data-cluster/deployment/aks/deploy-sql-big-data-aks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def executeCmd (cmd):
3131
# Optionally change these configuration settings
3232
#
3333
AZURE_REGION=input("Provide Azure region - Press ENTER for using `westus`:") or "westus"
34-
VM_SIZE=input("Provide VM size for the AKS cluster - Press ENTER for using `Standard_L4s`:") or "Standard_L4s"
35-
AKS_NODE_COUNT=input("Provide number of worker nodes for AKS cluster - Press ENTER for using `3`:") or "3"
34+
VM_SIZE=input("Provide VM size for the AKS cluster - Press ENTER for using `Standard_L8s`:") or "Standard_L8s"
35+
AKS_NODE_COUNT=input("Provide number of worker nodes for AKS cluster - Press ENTER for using `1`:") or "1"
3636
#This is both Kubernetes cluster name and SQL Big Data cluster name
3737
CLUSTER_NAME=input("Provide name of AKS cluster and SQL big data cluster - Press ENTER for using `sqlbigdata`:") or "sqlbigdata"
3838
#This password will be use for Controller user, Knox user and SQL Server Master SA accounts
@@ -70,7 +70,7 @@ def executeCmd (cmd):
7070
executeCmd (command)
7171

7272
print("Creating AKS cluster: "+CLUSTER_NAME)
73-
command = "az aks create --name "+CLUSTER_NAME+" --resource-group "+GROUP_NAME+" --generate-ssh-keys --node-vm-size "+VM_SIZE+" --node-count "+AKS_NODE_COUNT+" --kubernetes-version 1.10.12"
73+
command = "az aks create --name "+CLUSTER_NAME+" --resource-group "+GROUP_NAME+" --generate-ssh-keys --node-vm-size "+VM_SIZE+" --node-count "+AKS_NODE_COUNT+" --kubernetes-version 1.12.6"
7474
executeCmd (command)
7575

7676
command = "az aks get-credentials --overwrite-existing --name "+CLUSTER_NAME+" --resource-group "+GROUP_NAME+" --admin"

0 commit comments

Comments
 (0)