Skip to content

Commit 0a2c936

Browse files
Merge pull request #288700 from Akhilesh-microsoft/ACA/azure_pipelines
[ACA: azure-pipelines]: Verified the article, reviewed the content, and fixed all editorial issues. Updated the latest content and ms.date w.r.t freshness pass.
2 parents 55659b9 + 2858bcf commit 0a2c936

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/container-apps/azure-pipelines.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ ms.custom:
88
- devx-track-azurecli
99
- ignite-2023
1010
ms.topic: how-to
11-
ms.date: 11/09/2022
11+
ms.date: 10/20/2024
1212
ms.author: cshoe
1313
---
1414

1515
# Deploy to Azure Container Apps from Azure Pipelines
1616

1717
Azure Container Apps allows you to use Azure Pipelines to publish [revisions](revisions.md) to your container app. As commits are pushed to your [Azure DevOps repository](/azure/devops/repos/), a pipeline is triggered which updates the container image in the container registry. Azure Container Apps creates a new revision based on the updated container image.
1818

19-
The pipeline is triggered by commits to a specific branch in your repository. When creating the pipeline, you decide which branch is the trigger.
19+
Commits to a specific branch in your repository trigger the pipeline. When creating the pipeline, you decide which branch is the trigger.
2020

2121
## Container Apps Azure Pipelines task
2222

@@ -26,7 +26,7 @@ The task supports the following scenarios:
2626
* Build from source code without a Dockerfile and deploy to Container Apps. Supported languages include .NET, Java, Node.js, PHP, and Python
2727
* Deploy an existing container image to Container Apps
2828

29-
With the production release this task comes with Azure DevOps and no longer requires explicit installation. For the complete documentation, see [AzureContainerApps@1 - Azure Container Apps Deploy v1 task](/azure/devops/pipelines/tasks/reference/azure-container-apps-v1).
29+
With the production release, this task comes with Azure DevOps and no longer requires explicit installation. For the complete documentation, see [AzureContainerApps@1 - Azure Container Apps Deploy v1 task](/azure/devops/pipelines/tasks/reference/azure-container-apps-v1).
3030

3131
### Usage examples
3232

@@ -88,7 +88,7 @@ Take the following steps to configure an Azure DevOps pipeline to deploy to Azur
8888

8989
### Prerequisites
9090

91-
| Requirement | Instructions |
91+
| Requirement | Instructions |
9292
|--|--|
9393
| 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. |
9494
| Azure DevOps project | Go to [Azure DevOps](https://azure.microsoft.com/services/devops/) and select *Start free*. Then create a new project. |
@@ -106,15 +106,15 @@ Before creating a pipeline, the source code for your app must be in a repository
106106

107107
1. Enter the following information and select **Import**:
108108

109-
| Field | Value |
109+
| Field | Value |
110110
|--|--|
111111
| **Repository type** | Git |
112112
| **Clone URL** | `https://github.com/Azure-Samples/containerapps-albumapi-csharp.git` |
113113
| **Name** | `my-container-app` |
114114

115115
1. Select **Clone** to view the repository URL and copy it.
116116

117-
1. Open a terminal and run the following command to clone the repository:
117+
1. Open a terminal and run the following command:
118118

119119
```bash
120120
git clone <REPOSITORY_URL> my-container-app
@@ -147,7 +147,7 @@ To deploy to Azure Container Apps, you need to create an Azure DevOps service co
147147

148148
1. Enter the following information and select **Save**:
149149

150-
| Field | Value |
150+
| Field | Value |
151151
|--|--|
152152
| **Subscription** | Select your Azure subscription. |
153153
| **Resource group** | Select the resource group (`my-container-app-rg`) that contains your container app and container registry. |
@@ -192,6 +192,6 @@ To learn more about service connections, see [Connect to Microsoft Azure](/azure
192192

193193
1. Select **Save and run**.
194194

195-
An Azure Pipelines run starts to build and deploy your container app. To check its progress, navigate to *Pipelines* and select the run. During the first pipeline run, you may be prompted to authorize the pipeline to use your service connection.
195+
An Azure Pipelines run starts to build and deploy your container app. To check its progress, navigate to *Pipelines* and select the run. During the first pipeline run, you might be prompted to authorize the pipeline to use your service connection.
196196

197197
To deploy a new revision of your app, push a new commit to the *main* branch.

0 commit comments

Comments
 (0)