Skip to content

Commit 321a5a9

Browse files
Merge pull request #273086 from v-jaswel/aca/v-jaswel_work_item_215604
[ACA] Update tutorial-code-to-cloud.md per work item 215604
2 parents feb41bd + 5debd0f commit 321a5a9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/container-apps/tutorial-code-to-cloud.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ zone_pivot_groups: container-apps-image-build-type
1717

1818
# Tutorial: Build and deploy your app to Azure Container Apps
1919

20-
This article demonstrates how to build and deploy a microservice to Azure Container Apps from a source repository using the programming language of your choice.
20+
This article demonstrates how to build and deploy a microservice to Azure Container Apps from a source repository using your preferred programming language.
2121

22-
This tutorial is the first in a series of articles that walk you through how to use core capabilities within Azure Container Apps. The first step is to create a back end web API service that returns a static collection of music albums.
22+
This is the first tutorial in the series of articles that walk you through how to use core capabilities within Azure Container Apps. The first step is to create a back end web API service that returns a static collection of music albums.
2323

2424
> [!NOTE]
25-
> You can also build and deploy this app using the [az containerapp up](/cli/azure/containerapp#az_containerapp_up) by following the instructions in the [Quickstart: Build and deploy an app to Azure Container Apps from a repository](quickstart-code-to-cloud.md) article. The `az containerapp up` command is a fast and convenient way to build and deploy your app to Azure Container Apps using a single command. However, it doesn't provide the same level of customization for your container app.
25+
> You can also build and deploy this app using the [az containerapp up](/cli/azure/containerapp#az_containerapp_up) by following the instructions in the [Quickstart: Build and deploy an app to Azure Container Apps from a repository](quickstart-code-to-cloud.md) article. The `az containerapp up` command is a fast and convenient way to build and deploy your app to Azure Container Apps using a single command. However, it doesn't provide the same level of customization for your container app.
2626
2727
The next tutorial in the series will build and deploy the front end web application to Azure Container Apps.
2828

@@ -36,7 +36,7 @@ To complete this project, you need the following items:
3636

3737
::: zone pivot="acr-remote"
3838

39-
| Requirement | Instructions |
39+
| Requirement | Instructions |
4040
|--|--|
4141
| Azure account | If you don't have one, [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F). You need the *Contributor* or *Owner* permission on the Azure subscription to proceed. <br><br>Refer to [Assign Azure roles using the Azure portal](../role-based-access-control/role-assignments-portal.yml?tabs=current) for details. |
4242
| GitHub Account | Sign up for [free](https://github.com/join). |
@@ -47,7 +47,7 @@ To complete this project, you need the following items:
4747

4848
::: zone pivot="docker-local"
4949

50-
| Requirement | Instructions |
50+
| Requirement | Instructions |
5151
|--|--|
5252
| Azure account | If you don't have one, [create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F). You need the *Contributor* or *Owner* permission on the Azure subscription to proceed. Refer to [Assign Azure roles using the Azure portal](../role-based-access-control/role-assignments-portal.yml?tabs=current) for details. |
5353
| GitHub Account | Sign up for [free](https://github.com/join). |
@@ -161,7 +161,7 @@ New-AzResourceGroup -Location $Location -Name $ResourceGroup
161161

162162
## Create an Azure Container Registry
163163

164-
Next, create an Azure Container Registry (ACR) instance in your resource group to store the album API container image once it's built.
164+
After the album API container image is built, create an Azure Container Registry (ACR) instance in your resource group to store it.
165165

166166
# [Bash](#tab/bash)
167167

@@ -185,7 +185,7 @@ $acr = New-AzContainerRegistry -ResourceGroupName $ResourceGroup -Name $ACRName
185185

186186
## Build your application
187187

188-
With [ACR tasks](../container-registry/container-registry-tasks-overview.md), you can build and push the docker image for the album API without installing Docker locally.
188+
With [ACR tasks](../container-registry/container-registry-tasks-overview.md), you can build and push the docker image for the album API without installing Docker locally.
189189

190190
### Build the container with ACR
191191

@@ -286,7 +286,7 @@ az containerapp env create \
286286

287287
# [Azure PowerShell](#tab/azure-powershell)
288288

289-
A Log Analytics workspace is required for the Container Apps environment. The following commands create a Log Analytics workspace and save the workspace ID and primary shared key to variables.
289+
A Log Analytics workspace is required for the Container Apps environment. The following commands create a Log Analytics workspace and save the workspace ID and primary shared key to variables.
290290

291291
```azurepowershell
292292
$WorkspaceArgs = @{
@@ -358,13 +358,13 @@ $ImageParams = @{
358358
$TemplateObj = New-AzContainerAppTemplateObject @ImageParams
359359
```
360360

361-
You need run the following command to get your registry credentials.
361+
Run the following command to get your registry credentials.
362362

363363
```azurepowershell
364364
$RegistryCredentials = Get-AzContainerRegistryCredential -Name $ACRName -ResourceGroupName $ResourceGroup
365365
```
366366

367-
Create a registry credential object to define your registry information, and a secret object to define your registry password. The `PasswordSecretRef` refers to the `Name` in the secret object.
367+
Create a registry credential object to define your registry information, and a secret object to define your registry password. The `PasswordSecretRef` refers to the `Name` in the secret object.
368368

369369
```azurepowershell
370370
$RegistryArgs = @{
@@ -410,7 +410,7 @@ $MyApp.IngressFqdn
410410

411411
## Verify deployment
412412

413-
Copy the FQDN to a web browser. From your web browser, navigate to the `/albums` endpoint of the FQDN.
413+
Copy the FQDN to a web browser. From your web browser, navigate to the `/albums` endpoint of the FQDN.
414414

415415
:::image type="content" source="media/quickstart-code-to-cloud/azure-container-apps-album-api.png" alt-text="Screenshot of response from albums API endpoint.":::
416416

0 commit comments

Comments
 (0)