Skip to content

Commit 9c25307

Browse files
authored
Merge pull request #186422 from ninallam/ninallam-arm-template
Create resources using ARM template
2 parents 5320c68 + 9512f96 commit 9c25307

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/load-testing/tutorial-cicd-azure-pipelines.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: load-testing
66
ms.service: load-testing
77
ms.author: ninallam
88
author: ninallam
9-
ms.date: 11/30/2021
9+
ms.date: 01/25/2022
1010
ms.topic: tutorial
1111
#Customer intent: As an Azure user, I want to learn how to automatically test builds for performance regressions on every merge request and/or deployment by using Azure Pipelines.
1212
---
@@ -36,8 +36,7 @@ You'll learn how to:
3636

3737
* An Azure account with an active subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3838
* An Azure DevOps organization and project. If you don't have an Azure DevOps organization, you can [create one for free](/azure/devops/pipelines/get-started/pipelines-sign-up?view=azure-devops&preserve-view=true). If you need help with getting started with Azure Pipelines, see [Create your first pipeline](/azure/devops/pipelines/create-first-pipeline?preserve-view=true&view=azure-devops&tabs=java%2Ctfs-2018-2%2Cbrowser).
39-
* A GitHub account, where you can create a repository. If you don't have one, you can [create one for free](https://github.com/).
40-
* An existing Azure Load Testing resource. To create a Load Testing resource, see [Create and run a load test](./quickstart-create-and-run-load-test.md#create_resource).
39+
* A GitHub account, where you can create a repository. If you don't have one, you can [create one for free](https://github.com/).
4140

4241
## Set up your repository
4342

@@ -154,6 +153,7 @@ First, you'll install the Azure Load Testing extension from the Azure DevOps Mar
154153
For every update to the main branch, the Azure pipeline executes the following steps:
155154
156155
- Deploy the sample Node.js application to an Azure App Service web app. The name of the web app is configured in the pipeline definition.
156+
- Create an Azure Load Testing resource using the Azure Resource Manager (ARM) template present in the GitHub repository. Learn more about ARM templates [here](/azure/azure-resource-manager/templates/overview).
157157
- Trigger Azure Load Testing to create and run the load test, based on the Apache JMeter script and the test configuration YAML file in the repository.
158158
159159
To view the results of the load test in the pipeline log:
@@ -313,22 +313,22 @@ The following YAML code snippet describes how to use the task in an Azure Pipeli
313313
[
314314
{
315315
"name": "<Name of the secret>",
316-
"value": "$(mySecret1)",
316+
"value": "$(mySecret1)"
317317
},
318318
{
319319
"name": "<Name of the secret>",
320-
"value": "$(mySecret1)",
320+
"value": "$(mySecret1)"
321321
}
322322
]
323323
env: |
324324
[
325325
{
326326
"name": "<Name of the variable>",
327-
"value": "<Value of the variable>",
327+
"value": "<Value of the variable>"
328328
},
329329
{
330330
"name": "<Name of the variable>",
331-
"value": "<Value of the variable>",
331+
"value": "<Value of the variable>"
332332
}
333333
]
334334
```

articles/load-testing/tutorial-cicd-github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: load-testing
66
ms.service: load-testing
77
ms.author: ninallam
88
author: ninallam
9-
ms.date: 01/21/2022
9+
ms.date: 01/27/2022
1010
ms.topic: tutorial
1111
#Customer intent: As an Azure user, I want to learn how to automatically test builds for performance regressions on every pull request and/or deployment by using GitHub Actions.
1212
---
@@ -34,7 +34,6 @@ You'll learn how to:
3434

3535
* An Azure account with an active subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3636
* A GitHub account where you can create a repository. If you don't have one, you can [create one for free](https://github.com/).
37-
* An existing Azure Load Testing resource. To create a Load Testing resource, see [Create and run a load test](./quickstart-create-and-run-load-test.md#create_resource).
3837

3938
## Set up your repository
4039

@@ -182,6 +181,7 @@ Update the *SampleApp.yaml* GitHub Actions workflow file to configure the parame
182181
The GitHub Actions workflow executes the following steps for every update to the main branch:
183182
184183
- Deploy the sample Node.js application to an Azure App Service web app. The name of the web app is configured in the workflow file.
184+
- Create an Azure Load Testing resource using the Azure Resource Manager (ARM) template present in the GitHub repository. Learn more about ARM templates [here](/azure/azure-resource-manager/templates/overview).
185185
- Trigger Azure Load Testing to create and run the load test based on the Apache JMeter script and the test configuration YAML file in the repository.
186186
187187
To view the results of the load test in the GitHub Actions workflow log:

0 commit comments

Comments
 (0)