File tree Expand file tree Collapse file tree
samples/features/sql-big-data-cluster/deployment/aks Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ def executeCmd (cmd):
3131# Optionally change these configuration settings
3232#
3333AZURE_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
3737CLUSTER_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):
7070executeCmd (command )
7171
7272print ("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 "
7474executeCmd (command )
7575
7676command = "az aks get-credentials --overwrite-existing --name " + CLUSTER_NAME + " --resource-group " + GROUP_NAME + " --admin"
You can’t perform that action at this time.
0 commit comments