You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 21, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: Instructions/Labs/AZ400_M02_L03_Configure_Agent_Pools_and_Understand_Pipeline_Styles.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,19 +165,19 @@ In this task, you will configure your lab Virtual Machine as an Azure DevOps sel
165
165
1. From the list of projects, click the tile representing your **eShopOnWeb** project.
166
166
1. On the **eShopOnWeb** pane, in the vertical navigational pane on the left side, in the **Pipelines** section, click **Pipelines**.
167
167
1. On the **Recent** tab of the **Pipelines** pane, select **eShopOnWeb** and, on the **eShopOnWeb** pane, select **Edit**.
168
-
1. On the **eShopOnWeb** edit pane, in the existing YAML-based pipeline, replace line 13 which says `vmImage: windows-latest` designating the target agent pool the following content, designating the newly created self-hosted agent pool:
168
+
1. On the **eShopOnWeb** edit pane, in the existing YAML-based pipeline, replace line 13 which says `vmImage: ubuntu-latest` designating the target agent pool the following content, designating the newly created self-hosted agent pool:
169
169
170
170
```yaml
171
171
name: az400m03l03a-pool
172
172
demands:
173
173
- Agent.Name -equals az400m03-vm0
174
174
```
175
175
176
-
> **WARNING**: Be careful with copy/paste, make sure you have same indentation shown above.
176
+
> **WARNING**: Be careful with copy/paste, make sure you have the same indentation shown above.
177
177
178
178

179
179
180
-
1. On the **eShopOnWeb** edit pane, in the upper right corner of the pane, click **Save and Run**. This will automatically trigger the build based on this pipeline.
180
+
1. On the **eShopOnWeb** edit pane, in the upper right corner of the pane, click **Validate and save**. This will automatically trigger the build based on this pipeline.
181
181
1. In the Azure DevOps portal, in the vertical navigational pane on the left side, in the **Pipelines** section, click **Pipelines**. Depending on your lab setup, the pipeline might prompt you for permissions. Click **Permit** to allow the pipeline to run.
182
182
1. On the **Recent** tab of the **Pipelines** pane, click the **eShopOnWeb** entry, on the **Runs** tab of the **eShopOnWeb** pane, select the most recent run, on the **Summary** pane of the run, scroll down to the bottom, in the **Jobs** section, click **Phase 1** and monitor the job until its successful completion.
183
183
@@ -186,7 +186,7 @@ In this task, you will configure your lab Virtual Machine as an Azure DevOps sel
186
186
1. Stop and remove the agent service by running `.\config.cmd remove` from the command prompt.
187
187
1. Delete the agent pool.
188
188
1. Revoke the PAT token.
189
-
1. Revert the changes in the **eshoponweb-ci-pr.yml** file by navigating to it from Repos/.ado/eshoponweb-ci-pr.yml, selecting **Edit** and removing lines 13-15 (the agent pool snippet), and changing back to `vmImage: windows-latest` as it was originally. (This is because you will use the same sample pipeline file in a future lab exercise.)
189
+
1. Revert the changes in the **eshoponweb-ci-pr.yml** file by navigating to it from Repos/.ado/eshoponweb-ci-pr.yml, selecting **Edit** and removing lines 13-15 (the agent pool snippet), and changing back to `vmImage: ubuntu-latest` as it was originally. (This is because you will use the same sample pipeline file in a future lab exercise.)
190
190
191
191

0 commit comments