Skip to content

Commit 8210d9d

Browse files
committed
Add example outputs to chapter 0 (cluster creation)
1 parent f154ec7 commit 8210d9d

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

content/learning-paths/servers-and-cloud-computing/multiarch_nginx_on_aks/0-spin_up_aks_cluster.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ az aks nodepool add \
6060

6161
```
6262

63+
Each command returns JSON output. Verify that `"provisioningState": "Succeeded"` appears in each response.
64+
6365
### Connect to the cluster
6466

6567
Verify `kubectl` is available by running:
@@ -68,6 +70,13 @@ Verify `kubectl` is available by running:
6870
kubectl version --client
6971
```
7072

73+
The output should look similar to:
74+
75+
```output
76+
Client Version: v1.34.1
77+
Kustomize Version: v5.7.1
78+
```
79+
7180
If `kubectl` is installed the version information is printed. If you don't see the version information printed refer to the [Azure CLI](/install-guides/azure-cli) and [kubectl](/install-guides/kubectl/) install guides.
7281

7382
Next, set up your newly-created K8s cluster credentials using the Azure CLI:
@@ -76,6 +85,12 @@ Next, set up your newly-created K8s cluster credentials using the Azure CLI:
7685
az aks get-credentials --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME
7786
```
7887

88+
You should see:
89+
90+
```output
91+
Merged "nginx-on-arm" as current context in /home/user/.kube/config
92+
```
93+
7994
To verify you're connected to the cluster:
8095

8196
```bash

0 commit comments

Comments
 (0)