Skip to content

Commit 14e16c2

Browse files
committed
update
1 parent 7fc488d commit 14e16c2

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

articles/azure-resource-manager/resource-manager-tutorial-use-azure-pipelines.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ ms.author: jgao
2020

2121
Learn how to use Azure Pipelines to continuously build and deploy Azure Resource Manager template projects.
2222

23-
Azure DevOps provides developer services to support teams to plan work, collaborate on code development, and build and deploy applications. Developers can work in the cloud using Azure DevOps Services or on-premises using Azure DevOps Server.
24-
25-
Azure DevOps provides an integrated set of features that you can access through your web browser or IDE client. Azure Pipeline is one of these features. Azure Pipelines is a fully featured continuous integration (CI) and continuous delivery (CD) service. It works with your preferred Git provider and can deploy to most major cloud services. Then you can automate the build, testing, and deployment of your code to Microsoft Azure, Google Cloud Platform, or Amazon Web Services.
23+
Azure DevOps provides developer services to support teams to plan work, collaborate on code development, and build and deploy applications. Developers can work in the cloud using Azure DevOps Services. Azure DevOps provides an integrated set of features that you can access through your web browser or IDE client. Azure Pipeline is one of these features. Azure Pipelines is a fully featured continuous integration (CI) and continuous delivery (CD) service. It works with your preferred Git provider and can deploy to most major cloud services. Then you can automate the build, testing, and deployment of your code to Microsoft Azure, Google Cloud Platform, or Amazon Web Services.
2624

2725
This tutorial is designed for Azure Resource Manager template developers who are new Azure DevOps Services and Azure Pipelines. If you are already familiar with GitHub and DevOps, you can skip to [Create a pipeline](#create-a-pipeline).
2826

@@ -62,7 +60,7 @@ If you don’t have a GitHub account, see [Prerequisites](#prerequisites).
6260
1. Sign in to [GitHub](https://github.com).
6361
2. Select your account image on the upper right corner, and then select **Your repositories**.
6462

65-
![Azure Resource Manager DevOps Pipelines create GitHub repository](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-github-repository.png)
63+
![Azure Resource Manager Azure DevOps Azure Pipelines create GitHub repository](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-github-repository.png)
6664

6765
1. Select **New**, a green button.
6866
1. In **Repository name**, enter a repository name. For example, **AzureRmPipeline-repo**. Remember to replace any of **AzureRmPipeline** with your project name. You can select either **Public** or **private** for going through this tutorial. And then select **Create repository**.
@@ -92,7 +90,7 @@ This repository is referred to as a *remote repository*. Each of the developers
9290

9391
The following screenshots shows an example.
9492

95-
![Azure Resource Manager DevOps Pipelines create GitHub bash](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-github-bash.png)
93+
![Azure Resource Manager Azure DevOps Azure Pipelines create GitHub bash](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-github-bash.png)
9694

9795
The **CreateAzureStorage** folder is the folder where the template is stored. The **pwd** command shows the folder path. The path is where you save the template to in the following procedure.
9896

@@ -136,7 +134,7 @@ A DevOps organization is needed before you can proceed to the next procedure. I
136134
1. Sign in to [Azure DevOps](https://dev.azure.com).
137135
1. Select a DevOps organization from the left.
138136

139-
![Azure Resource Manager DevOps Pipelines create GitHub bash](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-github-bash.png)
137+
![Azure Resource Manager Azure DevOps Azure Pipelines create GitHub bash](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-github-bash.png)
140138

141139
1. Select **Create project**. If you don't have any projects, the create project page is opened automatically.
142140
1. Enter the following values:
@@ -163,18 +161,18 @@ Create a service connection that is used to deploy projects to Azure.
163161
164162
## Create a pipeline
165163
166-
Until now, you have completed the following tasks. If you skip the previous sections because you are famliar with GitHub and DevOps, you must complete the tasks before you continue.
164+
Until now, you have completed the following tasks. If you skip the previous sections because you are familiar with GitHub and DevOps, you must complete the tasks before you continue.
167165
168166
- Create a GitHub repository, and save [this template](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-storage-account-create/azuredeploy.json) to the **CreateAzureStorage** folder in the repository.
169167
- Create a DevOps project, and create an Azure Resource Manager service connection.
170168
171-
To create a pipline with a step to deploy a template:
169+
To create a pipeline with a step to deploy a template:
172170
173171
1. Select **Pipelines** from the left menu.
174172
1. Select **New pipeline**.
175173
1. From the **Connect** tab, select **GitHub**. If asked, enter your GitHub credentials, and then follow the instructions. If you see the following screen, select **Only select repositories**, and verify your repository is in the list before you select **Approve & Install**.
176174
177-
![Azure Resource Manager DevOps Pipelines only select repositories](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-only-select-repositories.png)
175+
![Azure Resource Manager Azure DevOps Azure Pipelines only select repositories](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-only-select-repositories.png)
178176
179177
1. From the **Select** tab, select your repository. The default name is **[YourAccountName]/[YourGitHubRepositoryName]**.
180178
1. From the **Configure** tab, select **Starter pipeline**. It shows the **azure-pipelines.yml** pipeline file with two script steps.
@@ -195,7 +193,7 @@ To create a pipline with a step to deploy a template:
195193
196194
It shall look like:
197195
198-
![Azure Resource Manager DevOps Pipelines yaml](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-yml.png)
196+
![Azure Resource Manager Azure DevOps Azure Pipelines yaml](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-yml.png)
199197
200198
Make the following changes:
201199
@@ -211,7 +209,7 @@ To create a pipline with a step to deploy a template:
211209
1. Select **Save and run** again. A copy of the YAML file is saved into the connected repository. You can see the YAML file by browse to your repository.
212210
1. Verify that the pipeline is executed successfully.
213211

214-
![Azure Resource Manager DevOps Pipelines yaml](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-status.png)
212+
![Azure Resource Manager Azure DevOps Azure Pipelines yaml](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-status.png)
215213

216214
## Verify the deployment
217215

@@ -220,7 +218,7 @@ To create a pipline with a step to deploy a template:
220218
1. Select the storage account name to open it.
221219
1. Select **Properties**. Notice the **SKU** is **Standard_LRS**.
222220

223-
![Azure Resource Manager DevOps Pipelines portal verification](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-portal-verification.png)
221+
![Azure Resource Manager Azure DevOps Azure Pipelines portal verification](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-portal-verification.png)
224222

225223
## Update and redeploy
226224

@@ -229,7 +227,7 @@ When you update the template and push the changes to the remote repository, the
229227
1. Open **azuredeploy.json** from your local repository in Visual Studio Code.
230228
1. Update the **defaultValue** of **storageAccountType** to **Standard_GRS**. See the following screenshot:
231229

232-
![Azure Resource Manager DevOps Pipelines update yaml](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-update-yml.png)
230+
![Azure Resource Manager Azure DevOps Azure Pipelines update yaml](./media/resource-manager-tutorial-use-azure-pipelines/azure-resource-manager-devops-pipelines-update-yml.png)
233231

234232
1. Save the changes.
235233
1. Push the changes to the remote repository by running the following commands from Git Bash/Shell.

0 commit comments

Comments
 (0)