Skip to content

Commit 6684f40

Browse files
committed
restore multi-step
1 parent 755e3d8 commit 6684f40

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

articles/container-registry/container-registry-intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Pull images from an Azure container registry to various deployment targets:
2626

2727
Developers can also push to a container registry as part of a container development workflow. For example, you can target a container registry from a continuous integration and continuous delivery (CI/CD) tool such as [Azure Pipelines](/azure/devops/pipelines/ecosystems/containers/acr-template) or [Jenkins](https://jenkins.io/).
2828

29-
Configure Azure Container Registry tasks to automatically rebuild application images when their base images are updated, or automate image builds when your team commits code to a Git repository. Create multiple-step tasks to automate building, testing, and patching container images in parallel in the cloud.
29+
Configure Azure Container Registry tasks to automatically rebuild application images when their base images are updated, or automate image builds when your team commits code to a Git repository. Create multi-step tasks to automate building, testing, and patching container images in parallel in the cloud.
3030

3131
Azure provides tooling like the Azure CLI, the Azure portal, and API support to manage your container registries. Optionally, install the [Docker Extension for Visual Studio Code](https://code.visualstudio.com/docs/azure/docker) and the [Azure Account](https://marketplace.visualstudio.com/items?itemName=ms-vscode.azure-account) extension to work with your container registries. Pull and push images to a container registry, or run Azure Container Registry tasks, all within Visual Studio Code.
3232

@@ -51,7 +51,7 @@ Azure provides tooling like the Azure CLI, the Azure portal, and API support to
5151

5252
* **Automated image builds**: Use [Azure Container Registry tasks](container-registry-tasks-overview.md) to streamline building, testing, pushing, and deploying images in Azure. For example, use Azure Container Registry tasks to extend your development inner loop to the cloud by offloading `docker build` operations to Azure. Configure build tasks to automate your container OS and framework patching pipeline, and build images automatically when your team commits code to source control.
5353

54-
[Multiple-step tasks](container-registry-tasks-overview.md#multi-step-tasks) provide step-based task definition and execution for building, testing, and patching container images in the cloud. Task steps define individual build and push operations for container images. They can also define the execution of one or more containers, in which each step uses a container as its execution environment.
54+
[Multi-step tasks](container-registry-tasks-overview.md#multi-step-tasks) provide step-based task definition and execution for building, testing, and patching container images in the cloud. Task steps define individual build and push operations for container images. They can also define the execution of one or more containers, in which each step uses a container as its execution environment.
5555

5656
## Related content
5757

articles/container-registry/container-registry-tasks-overview.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For example, with triggers for updates to a base image, you can automate [OS and
2828
2929
## Task scenarios
3030

31-
Azure Container Registry tasks support several scenarios to build and maintain container images and other artifacts. This article describes [quick tasks](#quick-tasks), [automatically triggered tasks](#automatically-triggered-tasks), and [multiple-step tasks](#multiple-step-tasks).
31+
Azure Container Registry tasks support several scenarios to build and maintain container images and other artifacts. This article describes [quick tasks](#quick-tasks), [automatically triggered tasks](#automatically-triggered-tasks), and [multi-step tasks](#multi-step-tasks).
3232

3333
Each task has an associated [source code context](#context-locations), which is the location of source files that are used to build a container image or other artifact. Example contexts include a Git repository and a local file system.
3434

@@ -55,7 +55,7 @@ Enable one or more *triggers* to build an image.
5555

5656
### Trigger a task on a source code update
5757

58-
You can trigger a container image build or multiple-step task when code is committed, or a pull request is made or updated, to a public or private Git repository in GitHub or Azure DevOps. For example, configure a build task with the Azure CLI command [az acr task create][az-acr-task-create] by specifying a Git repository and optionally a branch and Dockerfile. When your team updates code in the repository, a webhook created in Azure Container Registry tasks triggers a build of the container image defined in the repo.
58+
You can trigger a container image build or multi-step task when code is committed, or a pull request is made or updated, to a public or private Git repository in GitHub or Azure DevOps. For example, configure a build task with the Azure CLI command [az acr task create][az-acr-task-create] by specifying a Git repository and optionally a branch and Dockerfile. When your team updates code in the repository, a webhook created in Azure Container Registry tasks triggers a build of the container image defined in the repo.
5959

6060
Azure Container Registry tasks support the following triggers when you set a Git repo as a task's context:
6161

@@ -92,13 +92,13 @@ For more information, see [About base image updates for Azure Container Registry
9292

9393
You can schedule a task by setting up one or more *timer triggers* when you create or update the task. Scheduling a task is useful for running container workloads on a defined schedule, or running maintenance operations or tests on images pushed regularly to your registry. For more information, see [Run an Azure Container Registry task on a defined schedule](container-registry-tasks-scheduled.md).
9494

95-
## Multiple-step tasks
95+
## Multi-step tasks
9696

97-
Extend the single-image build-and-push capability of Azure Container Registry tasks with multiple-step workflows that are based on multiple containers.
97+
Extend the single-image build-and-push capability of Azure Container Registry tasks with multi-step workflows that are based on multiple containers.
9898

99-
Multiple-step tasks provide step-based task definition and execution for building, testing, and patching container images in the cloud. Task steps defined in a [YAML file](container-registry-tasks-reference-yaml.md) specify individual build and push operations for container images or other artifacts. They can also define the execution of one or more containers, with each step using the container as its execution environment.
99+
Multi-step tasks provide step-based task definition and execution for building, testing, and patching container images in the cloud. Task steps defined in a [YAML file](container-registry-tasks-reference-yaml.md) specify individual build and push operations for container images or other artifacts. They can also define the execution of one or more containers, with each step using the container as its execution environment.
100100

101-
For example, you can create a multiple-step task that automates the following steps:
101+
For example, you can create a multi-step task that automates the following steps:
102102

103103
1. Build a web application image.
104104
1. Run the web application container.
@@ -107,9 +107,9 @@ For example, you can create a multiple-step task that automates the following st
107107
1. If the tests pass, build a Helm chart archive package.
108108
1. Perform a `helm upgrade` task by using the new Helm chart archive package.
109109

110-
Multiple-step tasks enable you to split the building, running, and testing of an image into more composable steps, with dependency support between steps. With multiple-step tasks in Azure Container Registry tasks, you have more granular control over workflows for image building, testing, and OS and framework patching.
110+
Multi-step tasks enable you to split the building, running, and testing of an image into more composable steps, with dependency support between steps. With multi-step tasks in Azure Container Registry tasks, you have more granular control over workflows for image building, testing, and OS and framework patching.
111111

112-
[Learn more about running multiple-step build, test, and patch tasks in Azure Container Registry tasks](container-registry-tasks-multi-step.md).
112+
[Learn more about running multi-step build, test, and patch tasks in Azure Container Registry tasks](container-registry-tasks-multi-step.md).
113113

114114
## Context locations
115115

0 commit comments

Comments
 (0)