From 7fcce6df61cd35b7bb03d30dda4edf9b9907d6d4 Mon Sep 17 00:00:00 2001 From: GT-CK <83416854+GT-CK@users.noreply.github.com> Date: Thu, 29 Apr 2021 19:08:30 +0100 Subject: [PATCH] Update AZ400_M16_Deploying_multi-container_application_to_Azure_Kubernetes_Services.md Updated command to get Kubernetes version to also output version to the user and clarified the format of the LOCATION variable. --- ...ti-container_application_to_Azure_Kubernetes_Services.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Instructions/Labs/AZ400_M16_Deploying_multi-container_application_to_Azure_Kubernetes_Services.md b/Instructions/Labs/AZ400_M16_Deploying_multi-container_application_to_Azure_Kubernetes_Services.md index f6db11177..850d6e8f5 100644 --- a/Instructions/Labs/AZ400_M16_Deploying_multi-container_application_to_Azure_Kubernetes_Services.md +++ b/Instructions/Labs/AZ400_M16_Deploying_multi-container_application_to_Azure_Kubernetes_Services.md @@ -100,10 +100,10 @@ In this task, you will use Azure CLI to perform deployment of the Azure resource LOCATION= ``` - > **Note**: possible locations can be found by running the following command, use the **Name** property on `` : `az account list-locations -o table` + > **Note**: possible locations can be found by running the following command`` : `az account list-locations -o table`, use the value with no spaces in the **Name** property. ```bash - VERSION=$(az aks get-versions --location $LOCATION --query 'orchestrators[-1].orchestratorVersion' --output tsv) + VERSION=$(az aks get-versions --location $LOCATION --query 'orchestrators[-1].orchestratorVersion' --output tsv); echo $VERSION ``` 1. From the **Bash** session in the Cloud Shell pane, run the following to create a resource group that will host the AKS deployment: @@ -299,4 +299,4 @@ In this task, you will use Azure Cloud Shell to remove the Azure resources provi ## Review -In this lab, you learned how to use Azure DevOps to deploy a containerized ASP.NET Core web application **MyHealthClinic** (MHC) to an AKS cluster. \ No newline at end of file +In this lab, you learned how to use Azure DevOps to deploy a containerized ASP.NET Core web application **MyHealthClinic** (MHC) to an AKS cluster.