Merge pull request #491 from stperm/patch-1

Update LAB_09c-Implement_Azure_Kubernetes_Service.md
This commit is contained in:
staleycyn 2022-02-08 11:57:01 -08:00 committed by GitHub
commit b4642da7a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,9 +115,9 @@ In this task, you will deploy a pod into the Azure Kubernetes Service cluster.
1. From the Cloud Shell pane, run the following to retrieve the credentials to access the AKS cluster:
```sh
$RESOURCE_GROUP='az104-09c-rg1'
RESOURCE_GROUP='az104-09c-rg1'
$AKS_CLUSTER='az104-9c-aks1'
AKS_CLUSTER='az104-9c-aks1'
az aks get-credentials --resource-group $RESOURCE_GROUP --name $AKS_CLUSTER
```
@ -174,9 +174,9 @@ In this task, you will scale horizontally the number of pods and then number of
```sh
$RESOURCE_GROUP='az104-09c-rg1'
RESOURCE_GROUP='az104-09c-rg1'
$AKS_CLUSTER='az104-9c-aks1'
AKS_CLUSTER='az104-9c-aks1'
kubectl scale --replicas=2 deployment/nginx-deployment
```