From 02bb13dd243cceaf38e66c1bf6b08288590b5b41 Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Mon, 25 Sep 2023 11:24:32 -0500 Subject: [PATCH 1/4] Template change added the "," after "dataDisks":[ ]" and at the end of the changed code. --- Instructions/Labs/LAB_08-Manage_Virtual_Machines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md index 12afa8a9..16e06709 100644 --- a/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md +++ b/Instructions/Labs/LAB_08-Manage_Virtual_Machines.md @@ -290,7 +290,7 @@ In this task you will scale compute for Azure virtual machines by changing their >**Note**: This section of the template defines the same Azure virtual machine size as the one you specified for the first virtual machine via the Azure portal. -1. On the **Edit template** blade, in the section displaying the content of the template, replace line (`"dataDisks": [ ]` line) with the following code : +1. On the **Edit template** blade, in the section displaying the content of the template, replace line **51** (`"dataDisks": [ ],`) with the following code : ```json "dataDisks": [ @@ -308,7 +308,7 @@ In this task you will scale compute for Azure virtual machines by changing their "caching": "ReadOnly", "createOption": "Empty" } - ] + ], ``` >**Note**: If you are using a tool that pastes the code in line by line intellisense may add extra brackets causing validation errors. You may want to paste the code into notepad first and then paste it into line 49. From cd1a2faf19c6fbe95641880ff3e8b595e17212c4 Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Mon, 25 Sep 2023 16:02:40 -0500 Subject: [PATCH 2/4] Update LAB_09a-URL link name change "URL" link is now named "Default domain" --- Instructions/Labs/LAB_09a-Implement_Web_Apps.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md index 43431fcc..296df27c 100644 --- a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md +++ b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md @@ -65,7 +65,7 @@ In this task, you will create an Azure web app. In this task, you will create a staging deployment slot. -1. On the blade of the newly deployed web app, click the **URL** link to display the default web page in a new browser tab. +1. On the blade of the newly deployed web app, click the **Default domain** link to display the default web page in a new browser tab. 1. Close the new browser tab and, back in the Azure portal, in the **Deployment** section of the web app blade, click **Deployment slots**. @@ -147,7 +147,7 @@ In this task, you will deploy code to the staging deployment slot. 1. Close the Cloud Shell pane. -1. On the staging slot blade, click **Overview** and then click the **URL** link to display the default web page in a new browser tab. +1. On the staging slot blade, click **Overview** and then click the **Default domain** link to display the default web page in a new browser tab. 1. Verify that the browser page displays the **Hello World!** message and close the new tab. @@ -161,7 +161,7 @@ In this task, you will swap the staging slot with the production slot 1. On the **Swap** blade, review the default settings and click **Swap**. -1. Click **Overview** on the production slot blade of the web app and then click the **URL** link to display the web site home page in a new browser tab. +1. Click **Overview** on the production slot blade of the web app and then click the **Default domain** link to display the web site home page in a new browser tab. 1. Verify the default web page has been replaced with the **Hello World!** page. From 0a120e769b549bd058a931ea647c27f048a37b7e Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Mon, 25 Sep 2023 16:33:54 -0500 Subject: [PATCH 3/4] Update LAB_09a-Implement_Web_Apps.md git command was incorrect --- Instructions/Labs/LAB_09a-Implement_Web_Apps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md index 296df27c..816e14f8 100644 --- a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md +++ b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md @@ -142,7 +142,7 @@ In this task, you will deploy code to the staging deployment slot. 1. From the Cloud Shell pane, run the following to push the sample web app code from the local repository to the Azure web app staging deployment slot (make sure to replace the placeholder values with the value of the **Deployment Credentials** user name and password and the app name, which you identified in previous task): ```powershell - git push https://:@.scm.azurewebsites.net/.git master + git push https://:@-staging.scm.azurewebsites.net/.git master ``` 1. Close the Cloud Shell pane. From 005959eb82beead86b9a509e41470a10603cb992 Mon Sep 17 00:00:00 2001 From: Eric Bland Date: Mon, 25 Sep 2023 16:44:54 -0500 Subject: [PATCH 4/4] Update LAB_09a-Implement_Web_Apps.md Show data for last hour (instead of 7 days). --- Instructions/Labs/LAB_09a-Implement_Web_Apps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md index 816e14f8..99d7d359 100644 --- a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md +++ b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md @@ -229,7 +229,7 @@ In this task, you will configure and test autoscaling of Azure web app. 1. Minimize the Cloud Shell pane (but do not close it) and, on the web app blade, in the Settings section, click **Scale out (App Service plan)**. -1. Select **Autoscale Settings**, select the **Run history** tab, and check the **Observed resource instance count**. +1. Select **Autoscale Settings**, select the **Run history** tab. Under **Show data for last**, select **1 hour** and check the **Observed resource instance count**. 1. Monitor the utilization and the number of instances for a few minutes.