Skip to content

Commit 8f85182

Browse files
committed
remove junk
1 parent 2a32f3a commit 8f85182

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

AzDevOpsDemoGenerator

Lines changed: 0 additions & 1 deletion
This file was deleted.

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/5-exercise-add-lint-validate-stages-pipeline.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,9 @@ You found another problem in the Bicep file. Here, you'll fix the problem.
188188

189189
Wait until the pipeline run completes. Although Azure Pipelines automatically updates the page with the latest status, it's a good idea to refresh the page occasionally.
190190

191+
> [!note]
192+
> If you get an error stating that you need to register the Microsoft.Insights resource provider, see [Resolve errors for resource provider registration](/azure/azure-resource-manager/troubleshooting/error-register-resource-provider?tabs=azure-cli).
193+
191194
1. Notice that all three stages of the pipeline have finished successfully:
192195

193196
:::image type="content" source="../media/5-pipeline-run-stages-success.png" alt-text="Screenshot of the pipeline run in Azure DevOps, with all three stages reporting success.":::

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/7-exercise-add-preview-stage-pipeline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ First, you'll add a new stage to your pipeline that runs the what-if operation.
5454

5555
1. In the **Approvers** box, type your own name and select yourself.
5656

57-
1. Select the arrow button next to **Advanced**.
57+
1. Expand the **Advanced** section by selecting the down arrow.
5858

5959
Notice that, by default, approvers are allowed to approve the runs that they've triggered. Because you're the only person who will work with this pipeline, leave this checkbox selected.
6060

@@ -92,7 +92,7 @@ Next, you'll configure the **Deploy** stage to run against the **Website** envir
9292

9393
## Run the pipeline and review the what-if outputs
9494

95-
1. In your browser, go to your pipeline.
95+
1. In Azure DevOps, go to your pipeline.
9696

9797
1. Select the most recent run of your pipeline.
9898

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/9-exercise-add-test-stage-pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ You can now add a smoke test stage that runs your tests.
9393

9494
## Run the pipeline and review the test result
9595

96-
1. In your browser, go to your pipeline.
96+
1. In Azure DevOps, go to your pipeline.
9797

9898
1. Select the most recent run of your pipeline.
9999

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/code/7-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ trigger:
44
include:
55
- main
66

7-
pool:
8-
vmImage: ubuntu-latest
7+
pool: Default
98

109
variables:
1110
- name: deploymentDefaultLocation
@@ -80,3 +79,4 @@ stages:
8079
csmFile: deploy/main.bicep
8180
overrideParameters: >
8281
-environmentType $(EnvironmentType)
82+

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/code/9-pipeline.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ trigger:
44
include:
55
- main
66

7-
pool:
8-
vmImage: ubuntu-latest
7+
pool: Dafault
98

109
variables:
1110
- name: deploymentDefaultLocation

0 commit comments

Comments
 (0)