From 121ba6a4e0400dd445db8ad0d3d4f03530c241fe Mon Sep 17 00:00:00 2001 From: Stan Ivan Date: Sat, 5 Feb 2022 14:22:55 +0100 Subject: [PATCH] Update LAB_09c-Implement_Azure_Kubernetes_Service.md Fix environment variable assignments in order to work correctly in Bash --- .../Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md b/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md index 9c558347..435e83cf 100644 --- a/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md +++ b/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md @@ -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 ```