Skip to content

Commit

Permalink
Update 03-create-aks-cluster.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieu-benoit authored Aug 16, 2018
1 parent 18e6f7b commit e651481
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions labs/day1-labs/03-create-aks-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@
```
8. Create your AKS cluster in the resource group created above with 2 nodes, targeting Kubernetes version 1.7.7
8. Create your AKS cluster in the resource group created above with 2 nodes, targeting Kubernetes version 1.10.6
```
# This command can take 5-25 minutes to run as it is creating the AKS cluster. Please be PATIENT...
# set the location to one of the provided AKS locations (eg - centralus, eastus)
LOCATION=
az aks create -n $CLUSTER_NAME -g $NAME -c 2 -k 1.7.7 --generate-ssh-keys -l $LOCATION
az aks create -n $CLUSTER_NAME -g $NAME -c 2 -k 1.10.6 --generate-ssh-keys -l $LOCATION
```
9. Verify your cluster status. The `ProvisioningState` should be `Succeeded`
Expand All @@ -73,7 +73,7 @@
Name Location ResourceGroup KubernetesVersion ProvisioningState Fqdn
------------------- ---------- -------------------- ------------------- ------------------- -------------------------------------------------------------------
ODLaks-v2-gbb-16502 centralus ODL_aks-v2-gbb-16502 1.7.7 Succeeded odlaks-v2--odlaks-v2-gbb-16-b23acc-17863579.hcp.centralus.azmk8s.io
ODLaks-v2-gbb-16502 centralus ODL_aks-v2-gbb-16502 1.10.6 Succeeded odlaks-v2--odlaks-v2-gbb-16-b23acc-17863579.hcp.centralus.azmk8s.io
```
Expand All @@ -90,8 +90,8 @@
kubectl get nodes
NAME STATUS ROLES AGE VERSION
aks-nodepool1-20004257-0 Ready agent 4m v1.7.7
aks-nodepool1-20004257-1 Ready agent 4m v1.7.7
aks-nodepool1-20004257-0 Ready agent 4m v1.10.6
aks-nodepool1-20004257-1 Ready agent 4m v1.10.6
```
To see more details about your cluster:
Expand Down

0 comments on commit e651481

Please sign in to comment.