Skip to content

Commit

Permalink
update AKS version on quickstart (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgkanatsios committed Feb 19, 2022
1 parent a4a9f70 commit 7ab1068
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ az login # you don't need to do this if you're using Azure Cloud shell
# you should modify these values with your preferred ones
AKS_RESOURCE_GROUP=thundernetes # name of the resource group AKS will be installed
AKS_NAME=thundernetes # AKS cluster name
AKS_LOCATION=westus2 # AKS datacenter location
AKS_LOCATION=westus2 # AKS datacenter region
AKS_VERSION=1.22.4 # replace with the Kubernetes version that is supported in the region

# create a resource group
az group create --name $AKS_RESOURCE_GROUP --location $AKS_LOCATION
# create a new AKS cluster enabling the feature of Public IP per Node
az aks create --resource-group $AKS_RESOURCE_GROUP --name $AKS_NAME --ssh-key-value ~/.ssh/id_rsa.pub --kubernetes-version 1.20.9 --enable-node-public-ip
az aks create --resource-group $AKS_RESOURCE_GROUP --name $AKS_NAME --ssh-key-value ~/.ssh/id_rsa.pub --kubernetes-version $AKS_VERSION --enable-node-public-ip
# get credentials for this cluster
az aks get-credentials --resource-group $AKS_RESOURCE_GROUP --name $AKS_NAME --file ~/.kube/config-thundernetes
# check that cluster is up and running
Expand Down Expand Up @@ -242,4 +243,4 @@ kubectl delete clusterrole thundernetes-proxy-role thundernetes-metrics-reader t
kubectl delete serviceaccount thundernetes-gameserver-editor
kubectl delete clusterrolebinding thundernetes-manager-rolebinding thundernetes-proxy-rolebinding
kubectl delete rolebinding thundernetes-gameserver-editor-rolebinding
```
```

0 comments on commit 7ab1068

Please sign in to comment.