From 705ea266c07127ff56fd4c02d297ba350b6d7f76 Mon Sep 17 00:00:00 2001 From: tofusgh <31666473+tofusgh@users.noreply.github.com> Date: Thu, 7 Jan 2021 12:08:07 -0500 Subject: [PATCH] Students closing out of bash shell between tasks Need to make sure they re open the shell with bash and re-run the command variables otherwise learners close out of the shell when moving to the next task and their commands error because the variables are lost --- .../Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md b/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md index 0bd81738..ef81713d 100644 --- a/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md +++ b/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md @@ -167,9 +167,14 @@ In this task, you will deploy a pod into the Azure Kubernetes Service cluster. In this task, you will scale horizontally the number of pods and then number of cluster nodes. -1. From the **Cloud Shell** pane, run the following to scale the deployment by increasing of the number of pods to 2: +1. From the **Cloud Shell** make sure you have **bash** selected for your session, and run the following to scale the deployment by increasing of the number of pods to 2: ```sh + + RESOURCE_GROUP='az104-09c-rg1' + + AKS_CLUSTER='az104-9c-aks1' + kubectl scale --replicas=2 deployment/nginx-deployment ```