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
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.
Copy file name to clipboardExpand all lines: articles/container-apps/azure-pipelines.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,15 @@ ms.custom:
8
8
- devx-track-azurecli
9
9
- ignite-2023
10
10
ms.topic: how-to
11
-
ms.date: 11/09/2022
11
+
ms.date: 10/20/2024
12
12
ms.author: cshoe
13
13
---
14
14
15
15
# Deploy to Azure Container Apps from Azure Pipelines
16
16
17
17
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.
18
18
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.
20
20
21
21
## Container Apps Azure Pipelines task
22
22
@@ -26,7 +26,7 @@ The task supports the following scenarios:
26
26
* Build from source code without a Dockerfile and deploy to Container Apps. Supported languages include .NET, Java, Node.js, PHP, and Python
27
27
* Deploy an existing container image to Container Apps
28
28
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).
30
30
31
31
### Usage examples
32
32
@@ -88,7 +88,7 @@ Take the following steps to configure an Azure DevOps pipeline to deploy to Azur
88
88
89
89
### Prerequisites
90
90
91
-
| Requirement | Instructions |
91
+
| Requirement | Instructions |
92
92
|--|--|
93
93
| 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. |
94
94
| 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
106
106
107
107
1. Enter the following information and select **Import**:
1. Select **Clone** to view the repository URL and copy it.
116
116
117
-
1. Open a terminal and run the following command to clone the repository:
117
+
1. Open a terminal and run the following command:
118
118
119
119
```bash
120
120
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
147
147
148
148
1. Enter the following information and select **Save**:
149
149
150
-
| Field | Value |
150
+
| Field | Value |
151
151
|--|--|
152
152
| **Subscription** | Select your Azure subscription. |
153
153
| **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
192
192
193
193
1. Select **Save and run**.
194
194
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.
196
196
197
197
To deploy a new revision of your app, push a new commit to the *main* branch.
0 commit comments