Skip to content

Commit 0eb19d2

Browse files
committed
touchups and acrolinx
1 parent ebea915 commit 0eb19d2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

java/microprofile/cicd-microprofile.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ You start the Azure Pipelines containerize process by building a Docker image an
3030

3131
## Prerequisites
3232
1. Copy and save the clone URL from [GitHub](https://github.com/Azure-Samples/microprofile-hello-azure).
33-
1. Register or log into your [Azure DevOps](https://dev.azure.com) account and create a new [project](/vsts/organizations/projects/create-project).
33+
1. Register or log into your [Azure DevOps](https://dev.azure.com) organization and create a new [project](/vsts/organizations/projects/create-project).
3434
1. From your project page, select **Repos** in the left navigation, select **Import**, and use the Git clone URL you saved to **Import a Git repository**.
3535
1. In the [Azure portal](https://portal.azure.com), create an [Azure Container Registry](https://azure.microsoft.com/services/container-registry).
3636
1. In the Azure portal, create an Azure Web App for Containers. Select **Linux** for the **OS**, and for **Configure container**, select **Quickstart** as the **Image source**.
3737

3838
## Create a build pipeline
3939

40-
The continuous integration build pipeline in Azure Pipelines automatically executes all build tasks each time there's a commit in in the Java EE source app. In this example, Azure Pipelines uses Maven to build the Java MicroProfile project.
40+
The continuous integration build pipeline in Azure Pipelines automatically executes all build tasks each time there's a commit in the Java EE source app. In this example, Azure Pipelines uses Maven to build the Java MicroProfile project.
4141

42-
1. From your Azure Repos Git repository, select **Azure Pipelines** > **Builds** in the left navigation.
42+
1. From your Azure Repos Git repository, select **Pipelines** > **Builds** in the left navigation.
4343

4444
![Select Builds](media/cicd-microprofile/builds.png)
4545

@@ -96,7 +96,7 @@ Azure Pipelines uses a Dockerfile with a base image from Payara Micro to create
9696

9797
Azure Pipelines pushes the Docker image to your Azure Container Registry, and uses it to run the MicroProfile API app as a containerized Java web app.
9898

99-
1. Since you are using Docker in Azure Pipelines, create a new Docker template by repeating the steps under [Create a Docker build image](#create-a-docker-build-image). This time, select **push** in the **Command** dropdown.
99+
1. Since you're using Docker in Azure Pipelines, create a new Docker template by repeating the steps under [Create a Docker build image](#create-a-docker-build-image). This time, select **push** in the **Command** dropdown.
100100

101101
1. Select the dropdown next to **Save & queue**, and select **Save & queue**.
102102

@@ -110,7 +110,7 @@ Azure Pipelines pushes the Docker image to your Azure Container Registry, and us
110110

111111
An Azure Pipelines continuous release pipeline automatically triggers deployment to a target environment like Azure as soon as a build succeeds. You can create release pipelines for environments like dev, test, staging, or production.
112112

113-
1. On your Azure DevOps project page, select **Azure Pipelines** > **Releases** in the left navigation.
113+
1. On your Azure DevOps project page, select **Pipelines** > **Releases** in the left navigation.
114114

115115
1. Select **New Pipeline**.
116116

@@ -193,7 +193,7 @@ To enable continuous deployment:
193193

194194
## Deploy the Java app
195195

196-
Now that you enabled CI/CD, modifying the source code creates and runs builds and releases automatically. To create and run a new release manually.
196+
Now that you enabled CI/CD, modifying the source code creates and runs builds and releases automatically. You can also create and run releases manually.
197197

198198
1. Select **Create release** at the upper right on the pipeline page.
199199

0 commit comments

Comments
 (0)