Skip to content

Commit e973ab6

Browse files
committed
review comments
1 parent 281a3e8 commit e973ab6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/container-registry/container-registry-task-run-template.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.date: 04/22/2020
99

1010
[ACR Tasks](container-registry-tasks-overview.md) is a suite of features within Azure Container Registry to help you manage and modify container images across the container lifecycle.
1111

12-
This article shows Azure Resource Manager template examples to queue a [quick task](container-registry-tasks-overview.md#quick-task), similar to one you can create manually using the [az acr build][az-acr-build] command.
12+
This article shows Azure Resource Manager template examples to queue a quick task run, similar to one you can create manually using the [az acr build][az-acr-build] command.
1313

1414
A Resource Manager template to queue a task run is useful in automation scenarios and extends the functionality of `az acr build`. For example:
1515

@@ -43,7 +43,7 @@ For this example, provide values for the following template parameters:
4343

4444
### Deploy the template
4545

46-
Deploy the template with the [az deployment group create][az-deployment-group-create] command. This example builds and pushes the *helloworld-node:testtask* image to a registry named *mycontainerregistry*.
46+
Deploy the template with the [az deployment group create][az-deployment-group-create] command. This example builds and pushes the *helloworld-node:testrun* image to a registry named *mycontainerregistry*.
4747

4848
```azurecli
4949
az deployment group create \
@@ -52,7 +52,7 @@ az deployment group create \
5252
--parameters \
5353
registryName=mycontainerregistry \
5454
repository=helloworld-node \
55-
taskRunName=testtask \
55+
taskRunName=testrun \
5656
sourceLocation=https://github.com/Azure-Samples/acr-build-helloworld-node.git
5757
```
5858

@@ -73,7 +73,7 @@ Output:
7373
```console
7474
Result
7575
--------
76-
testtask
76+
testrun
7777
```
7878

7979
### View run log
@@ -114,7 +114,7 @@ The portal shows the task run log.
114114

115115
## Example: Task run with managed identity
116116

117-
Use a [sample template](https://github.com/Azure/acr/tree/master/docs/tasks/run-as-deployment/quickdockerbuildwithidentity) to queue a task that enables a user-assigned managed identity. During the task run, the identity authenticates to pull an image from another Azure container registry.
117+
Use a [sample template](https://github.com/Azure/acr/tree/master/docs/tasks/run-as-deployment/quickdockerbuildwithidentity) to queue a task run that enables a user-assigned managed identity. During the task run, the identity authenticates to pull an image from another Azure container registry.
118118

119119
This scenario is similar to [Cross-registry authentication in an ACR task using an Azure-managed identity](container-registry-tasks-cross-registry-authentication.md). For example, an organization might maintain a centralized registry with base images accessed by multiple development teams.
120120

@@ -187,7 +187,7 @@ For this example, provide values for the following template parameters:
187187

188188
### Deploy the template
189189

190-
Deploy the template with the [az deployment group create][az-deployment-group-create] command. This example builds and pushes the *helloworld-node:testtask* image to a registry named *mycontainerregistry*. The base image is pulled from *mybaseregistry.azurecr.io*.
190+
Deploy the template with the [az deployment group create][az-deployment-group-create] command. This example builds and pushes the *helloworld-node:testrun* image to a registry named *mycontainerregistry*. The base image is pulled from *mybaseregistry.azurecr.io*.
191191

192192
```azurecli
193193
az deployment group create \

0 commit comments

Comments
 (0)