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
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ Table of Contents
8
8
*[A. Deploy an Azure SQL Server Database](#a-deploy-an-azure-sql-server-and-database)
9
9
*[B. Provision a Linux VM (Bastion Host/Jump Box) on Azure and install pre-requisite software](#b-provision-a-linux-centos-vm-on-azure)
10
10
*[C. Build and run the Claims API microservice locally on the Bastion Host](#c-build-and-run-the-claims-api-microservice-locally-on-the-linux-vm)
11
-
*[D. Deploy an Azure Container Registry (ACR)](#e-deploy-azure-container-registry)
12
-
*[E. Deploy an Azure Pipelines Agent on the Bastion Host](#d-deploy-an-azure-pipelines-agent-on-the-linux-vm)
11
+
*[D. Deploy an Azure Container Registry (ACR)](#d-deploy-azure-container-registry)
12
+
*[E. Deploy an Azure Pipelines Agent on the Bastion Host](#e-deploy-an-azure-pipelines-agent-on-the-linux-vm)
13
13
*[F. Define and execute a Build Pipeline in Azure DevOps Services](#f-define-and-execute-claims-api-build-pipeline-in-azure-devops-services)
14
14
*[G. Deploy an Azure Kubernetes Service (AKS) cluster](#g-create-an-azure-kubernetes-service-cluster-and-deploy-claims-api-microservice)
15
15
*[Invoking the Claims API Microservice REST API](#invoking-the-claims-api-microservice-rest-api)
@@ -585,7 +585,7 @@ Also, refer to the [Azure DevOps Services Docs](https://docs.microsoft.com/en-us
585
585
### F. Define and execute Claims API Build Pipeline in Azure DevOps Services
586
586
**Approx. time to complete this section: 1 Hour**
587
587
588
-
In this step, we will create a **Continuous Integration** (CI) pipeline in Azure DevOps. This pipeline will contain the tasks for building the microservice (binary artifacts) and packaging (layering) it within a docker container. During the application container build process, the application binary is layered on top of a base docker image (mcr.microsoft.com/dotnet/core/aspnet). Finally, the application container image is pushed into the ACR which you deployed in [Section D](#e-deploy-azure-container-registry).
588
+
In this step, we will create a **Continuous Integration** (CI) pipeline in Azure DevOps. This pipeline will contain the tasks for building the microservice (binary artifacts) and packaging (layering) it within a docker container. During the application container build process, the application binary is layered on top of a base docker image (mcr.microsoft.com/dotnet/core/aspnet). Finally, the application container image is pushed into the ACR which you deployed in [Section D](#d-deploy-azure-container-registry).
589
589
590
590
Before proceeding with the next steps, take a few minutes and go thru the **dockerfile** and Claims API source files in the GitHub repository. This will help you understand how the container is built when the continuous integration (CI) pipeline is executed in Azure DevOps Services.
591
591
@@ -660,7 +660,7 @@ Before proceeding with the next steps, take a few minutes and go thru the **dock
660
660
- Display name = `Build container image`
661
661
- Container Registry Type = `Azure Container Registry`
662
662
- Azure Subscription = Select your Azure Subscription. Click **Authorize**.
663
-
- Azure Container Registry = Select ACR which you provisioned in [Section D](#e-deploy-azure-container-registry) above.
663
+
- Azure Container Registry = Select ACR which you provisioned in [Section D](#d-deploy-azure-container-registry) above.
664
664
- Action = `Build an image`
665
665
- Docker File = `dockerfile`
666
666
- Image Name = `claims-api:$(Build.BuildId)`
@@ -679,7 +679,7 @@ Before proceeding with the next steps, take a few minutes and go thru the **dock
679
679
- Display name = `Push container image to ACR`
680
680
- Container Registry Type = `Azure Container Registry`
681
681
- Azure Subscription = Select your Azure Subscription.
682
-
- Azure Container Registry = Select ACR which you provisioned in [Section D](#e-deploy-azure-container-registry) above.
682
+
- Azure Container Registry = Select ACR which you provisioned in [Section D](#d-deploy-azure-container-registry) above.
683
683
- Action = `Push an image`
684
684
- Image Name = `claims-api:$(Build.BuildId)`
685
685
- Qualify Image Name = Enable checkbox.
@@ -1316,7 +1316,7 @@ In this section, we will build and deploy a *Continuous Delivery* pipeline in Az
1316
1316
1317
1317

1318
1318
1319
-
In the **Add a Docker Registry service connection** page, select **Azure Container Registry** for **Registry type** and specify a *Name* for **Connection name** (eg., ACR-Connection). In the **Azure subscription** drop down field, select your Azure subscription. In the **Azure container registry** drop down field, select the ACR instance which you created in [Section D](#e-deploy-azure-container-registry). See screenshot below.
1319
+
In the **Add a Docker Registry service connection** page, select **Azure Container Registry** for **Registry type** and specify a *Name* for **Connection name** (eg., ACR-Connection). In the **Azure subscription** drop down field, select your Azure subscription. In the **Azure container registry** drop down field, select the ACR instance which you created in [Section D](#d-deploy-azure-container-registry). See screenshot below.
0 commit comments