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
+10-6
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ For easy and quick reference, readers can refer to the following on-line resourc
77
77
## A. Deploy an Azure SQL Server and Database
78
78
**Approx. time to complete this section: 20 minutes**
79
79
80
-
In this section, we will create an Azure SQL Server instance and create a database (`ClaimsDB`). This database will be used by the Claims API microservice to persist *Claims* records.
80
+
In this section, we will create an Azure SQL Server instance and create a database (`ClaimsDB`). This database will be used by the Claims API microservice to persist *Medical Claims* records.
81
81
82
82
1. Login to the Azure Cloud Shell.
83
83
@@ -401,7 +401,7 @@ In this section, we will work on the following tasks
401
401
- Configure the Azure SQL Server connection string in the Claims API microservice (source code)
402
402
- Build the Claims API microservice using the .NET Core 3.1 SDK
403
403
- Run the .NET Core *Entity Framework* migrations to create the relational database tables in Azure SQL Server provisioned in [Section A](#a-deploy-an-azure-sql-server-and-database). These tables will be used to persist Claims records.
404
-
- Run the Claims API microservice locally using the .NET Core 3.1 SDK
404
+
- Run the Claims API microservice locally using the .NET Core 3.1 CLI
405
405
- Build the microservice Docker container and run the container
406
406
407
407
Before proceeding, login into the Linux VM using SSH.
@@ -550,7 +550,7 @@ You have now successfully tested the Claims API microservice locally on this VM.
550
550
551
551
Use one of the options below for deploying the *Azure DevOps Services* self-hosted build agent on the Linux VM.
552
552
553
-
**Option 1** is recommended for**advanced users** who are well versedin container technology and are familiar with docker engine.
553
+
**Option 1** is recommended for**advanced users** who are well versedin container technology and are familiar with Kubernetes and docker engine.
554
554
555
555
**Option 2** is recommended for users who are **new** to containers.
556
556
@@ -971,6 +971,7 @@ Follow the steps below to provision the AKS cluster and deploy the Claims API mi
971
971
- **Linux/MacOS**: Update the `/etc/hosts` file. On Linux systems, this file is used to lookup and resolve host name IP addresses. Use *vi* or *nano* to edit this file.
972
972
- **Windows**: Update the `C:\Windows\System32\Drivers\etc\hosts` file.
973
973
974
+
974
975
>**NOTE:** If you are familiar with Azure and AKS, you can also assign a DNS name to the Azure Load Balancer Public IP (External IP) of the Traefik load balancer *Service*. You will however, have to specify this DNS name as the value for the **dashboard.domain** parameter while deploying the Traefik Ingress Controller using Helm (above).
975
976
976
977
Add an entry to the local DNS name resolver file as shown in the snippet below.
@@ -1122,7 +1123,9 @@ In the next section, we will define a *Release Pipeline* in Azure DevOps to auto
1122
1123
1123
1124

1124
1125
1125
-
In the *Pipeline* tab, click on the *trigger* icon (highlighted in yellow) and enable**Continuous deployment trigger**. See screenshot below.
1126
+
Next, we want to trigger this **Release** pipeline when the **Build** pipeline completes successfully. In the *Pipelines* tab, click on the *trigger* icon (highlighted in yellow) and enable**Continuous deployment trigger**.
1127
+
1128
+
See screenshot below.
1126
1129
1127
1130

1128
1131
@@ -1159,7 +1162,8 @@ In the next section, we will define a *Release Pipeline* in Azure DevOps to auto
Remember to specify the correct value for**ACR instance**in**image.repository** template parameter !
1164
1168
1165
1169
See screenshots below.
@@ -1206,7 +1210,7 @@ In the next section, we will define a *Release Pipeline* in Azure DevOps to auto
1206
1210
1207
1211
Click on **Save** to save the release pipeline.
1208
1212
1209
-
We have now finished defining the **Release pipeline**forthe Claims API microservice. This pipeline willin turn be triggered when the build pipeline completes successfully.
1213
+
We have now finished defining the **Release pipeline**for the Claims API microservice.
0 commit comments