az acr task
Manage a collection of steps for building, testing and OS & Framework patching container images using Azure Container Registries.
Commands
Name | Description | Type | Status |
---|---|---|---|
az acr task cancel-run |
Cancel a specified run of an Azure Container Registry. |
Core | GA |
az acr task create |
Create a series of steps for building, testing and OS & Framework patching containers. Tasks support triggers from git commits and base image updates. |
Core | GA |
az acr task credential |
Manage credentials for a task. Please see https://aka.ms/acr/tasks/cross-registry-authentication for more information. |
Core | GA |
az acr task credential add |
Add a custom registry login credential to the task. |
Core | GA |
az acr task credential list |
List all the custom registry credentials for task. |
Core | GA |
az acr task credential remove |
Remove credential for a task. |
Core | GA |
az acr task credential update |
Update the registry login credential for a task. |
Core | GA |
az acr task delete |
Delete a task from an Azure Container Registry. |
Core | GA |
az acr task identity |
Managed Identities for Task. Please see https://aka.ms/acr/tasks/task-create-managed-identity for more information. |
Core | GA |
az acr task identity assign |
Update the managed identity for a task. |
Core | GA |
az acr task identity remove |
Remove managed identities for a task. |
Core | GA |
az acr task identity show |
Display the managed identities for task. |
Core | GA |
az acr task list |
List the tasks for an Azure Container Registry. |
Core | GA |
az acr task list-runs |
List all of the executed runs for an Azure Container Registry, with the ability to filter by a specific Task. |
Core | GA |
az acr task logs |
Show logs for a particular run. If no run-id is supplied, show logs for the last created run. |
Core | GA |
az acr task run |
Manually trigger a task that might otherwise be waiting for git commits or base image update triggers. |
Core | GA |
az acr task show |
Get the properties of a named task for an Azure Container Registry. |
Core | GA |
az acr task show-run |
Get the properties of a specified run of an Azure Container Registry Task. |
Core | GA |
az acr task timer |
Manage timer triggers for a task. |
Core | GA |
az acr task timer add |
Add a timer trigger to a task. |
Core | GA |
az acr task timer list |
List all timer triggers for a task. |
Core | GA |
az acr task timer remove |
Remove a timer trigger from a task. |
Core | GA |
az acr task timer update |
Update the timer trigger for a task. |
Core | GA |
az acr task update |
Update a task for an Azure Container Registry. |
Core | GA |
az acr task update-run |
Patch the run properties of an Azure Container Registry Task. |
Core | GA |
az acr task cancel-run
Cancel a specified run of an Azure Container Registry.
az acr task cancel-run --registry
--run-id
[--resource-group]
Examples
Cancel a run
az acr task cancel-run -r myregistry --run-id runId
Required Parameters
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
The unique run identifier.
Optional Parameters
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task create
Create a series of steps for building, testing and OS & Framework patching containers. Tasks support triggers from git commits and base image updates.
az acr task create --name
--registry
[--agent-pool]
[--arg]
[--assign-identity]
[--auth-mode {Default, None}]
[--base-image-trigger-enabled {false, true}]
[--base-image-trigger-name]
[--base-image-trigger-type {All, Runtime}]
[--cmd]
[--commit-trigger-enabled {false, true}]
[--context]
[--cpu]
[--file]
[--git-access-token]
[--image]
[--is-system-task]
[--log-template]
[--no-cache {false, true}]
[--no-push {false, true}]
[--platform]
[--pull-request-trigger-enabled {false, true}]
[--resource-group]
[--schedule]
[--secret-arg]
[--set]
[--set-secret]
[--source-trigger-name]
[--status {Disabled, Enabled}]
[--target]
[--timeout]
[--update-trigger-endpoint]
[--update-trigger-payload-type {Default, Token}]
[--values]
Examples
Create a task without the source location.
az acr task create -n hello-world -r myregistry --cmd '$Registry/myimage' -c /dev/null
Create a task with the definition from the standard input and with a timer trigger that runs the task at the top of every hour using the default trigger name. Either 'Ctrl + Z'(Windows) or 'Ctrl + D'(Linux) terminates the input stream.
cat task.yaml | az acr task create -n hello-world -r myregistry -f - -c /dev/null \
--schedule "0 */1 * * *"
az acr task create -n hello-world -r myregistry -f - -c /dev/null --schedule "0 */1 * * *"
Create a Linux task from a public GitHub repository which builds the hello-world image without triggers and uses a build argument.
az acr task create -t hello-world:{{.Run.ID}} -n hello-world -r myregistry \
-c https://github.com/Azure/acr-builder.git -f Dockerfile \
--commit-trigger-enabled false --base-image-trigger-enabled false \
--arg DOCKER_CLI_BASE_IMAGE=docker:18.03.0-ce-git
Create a Linux task using a specific branch of a private Azure DevOps repository which builds the hello-world image on Arm architecture (V7 variant) and has triggers enabled.
az acr task create -t hello-world:{{.Run.ID}} -n hello-world -r myregistry \
-c https://msazure.visualstudio.com/DefaultCollection/Project/_git/Repo#Branch:Folder \
-f Dockerfile --git-access-token <Personal Access Token> --platform linux/arm/v7
Create a Linux task from a public GitHub repository which builds the hello-world image with both a git commit and pull request trigger enabled. Note that this task does not use Source Registry (myregistry), so we can explicitly set Auth mode as None for it.
az acr task create -t hello-world:{{.Run.ID}} -n hello-world -r myregistry -f Dockerfile \
--no-push true --auth-mode None -c https://github.com/Azure-Samples/acr-build-helloworld-node.git \
--pull-request-trigger-enabled true --git-access-token 000000000000000000000000000000000
Create a Windows task from a public GitHub repository which builds the Azure Container Builder image on Amd64 architecture with only base image trigger enabled.
az acr task create -t acb:{{.Run.ID}} -n acb-win -r myregistry \
-c https://github.com/Azure/acr-builder.git -f Windows.Dockerfile \
--commit-trigger-enabled false --platform Windows/amd64
Create a Linux multi-step task from a public GitHub repository with with both system-assigned and user-assigned managed identities and base image, git commit, pull request, and timer triggers that run the task at noon on Mondays through Fridays with the timer trigger name provided.
az acr task create -t hello-world:{{.Run.ID}} -n hello-world -r myregistry \
--pull-request-trigger-enabled true --schedule "dailyTimer:0 12 * * Mon-Fri" \
-c https://github.com/Azure-Samples/acr-tasks.git#:multipleRegistries -f testtask.yaml \
--assign-identity [system] "/subscriptions/<subscriptionId>/resourcegroups/<myResourceGroup>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/<myUserAssignedIdentitiy>"
Required Parameters
The name of the task.
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
The name of the agent pool.
Build argument in '--arg name[=value]' format. Multiples are supported by passing '--arg name[=value]' multiple times. IMPORTANT: This parameter should not include passwords, access tokens, or sensitive information of any kind. This parameter value will be visible to the ACR team for debugging purposes.
Assigns managed identities to the task. Use '[system]' to refer to the system-assigned identity or a resource ID to refer to a user-assigned identity. Please see https://aka.ms/acr/tasks/task-create-managed-identity for more information.
Auth mode of the source registry.
Indicates whether the base image trigger is enabled.
The name of the base image trigger.
The type of the auto trigger for base image dependency updates.
Commands to execute. This also supports additional docker run parameters (https://docs.docker.com/engine/reference/commandline/run/) or even other docker commands (https://docs.docker.com/engine/reference/commandline/docker/).
Indicates whether the source control commit trigger is enabled.
The full URL to the source code repository (Requires '.git' suffix for a github repo) or a remote tarball (e.g., 'http://server/context.tar.gz'), or the repository of an OCI artifact in an Azure container registry (e.g., 'oci://myregistry.azurecr.io/myartifact:mytag'). If '/dev/null' is specified, the value will be set to None and ignored. This is a required argument if the task is not a system task.
The CPU configuration in terms of number of cores required for the run.
Relative path of the the task/docker file to the source code root folder. Task files must be suffixed with '.yaml' or piped from the standard input using '-'.
The access token used to access the source control provider.
The name and tag of the image using the format: '-t repo/image:tag'. Multiple tags are supported by passing -t multiple times.
Indicates whether the task resource is a system task. The name of the task must be 'quicktask'. Only applicable to CMK enabled registry.
The repository and tag template for run log artifact using the format: 'log/repo:tag' (e.g., 'acr/logs:{{.Run.ID}}'). Only applicable to CMK enabled registry.
Indicates whether the image cache is enabled.
Indicates whether the image built should be pushed to the registry.
The platform where build/task is run, Eg, 'windows' and 'linux'. When it's used in build commands, it also can be specified in 'os/arch/variant' format for the resulting image. Eg, linux/arm/v7. The 'arch' and 'variant' parts are optional.
Indicates whether the source control pull request trigger is enabled. The trigger is disabled by default.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Schedule for a timer trigger represented as a cron expression. An optional trigger name can be specified using --schedule name:schedule
format. Multiples supported by passing --schedule multiple times.
Secret build argument in '--secret-arg name[=value]' format. Multiples are supported by passing '--secret-arg name[=value]' multiple times. This parameter value is not surfaced to the ACR team and is more suitable for sensitive information.
Task value in '--set name[=value]' format. Multiples supported by passing --set multiple times.
Secret task value in '--set-secret name[=value]' format. Multiples supported by passing --set-secret multiple times.
The name of the source trigger.
The current status of task.
The name of the target build stage.
The timeout in seconds.
The full URL of the endpoint to receive base image update trigger notifications.
Indicates whether to include metadata about the base image trigger in the payload alongwith the update trigger token, when a notification is sent.
The task values/parameters file path relative to the source context.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task delete
Delete a task from an Azure Container Registry.
az acr task delete --name
--registry
[--resource-group]
[--yes]
Examples
Delete a task from an Azure Container Registry.
az acr task delete -n MyTask -r myregistry
Required Parameters
The name of the task.
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Do not prompt for confirmation.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task list
List the tasks for an Azure Container Registry.
az acr task list --registry
[--resource-group]
Examples
List tasks and show the results in a table.
az acr task list -r myregistry -o table
Required Parameters
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task list-runs
List all of the executed runs for an Azure Container Registry, with the ability to filter by a specific Task.
az acr task list-runs --registry
[--image]
[--name]
[--resource-group]
[--run-status {Canceled, Error, Failed, Queued, Running, Started, Succeeded, Timeout}]
[--top]
Examples
List all of the runs for a registry and show the results in a table.
az acr task list-runs -r myregistry -o table
List runs for a task and show the results in a table.
az acr task list-runs -r myregistry -n MyTask -o table
List the last 10 successful runs for a registry and show the results in a table.
az acr task list-runs -r myregistry --run-status Succeeded --top 10 -o table
List all of the runs that built the image 'hello-world' for a registry and show the results in a table.
az acr task list-runs -r myregistry --image hello-world -o table
Required Parameters
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
The name of the image. May include a tag in the format 'name:tag' or digest in the format 'name@digest'.
The name of the task.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The current status of run.
Limit the number of latest runs in the results.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task logs
Show logs for a particular run. If no run-id is supplied, show logs for the last created run.
az acr task logs --registry
[--image]
[--name]
[--no-format]
[--resource-group]
[--run-id]
Examples
Show logs for the last created run in the registry.
az acr task logs -r myregistry
Show logs for the last created run in the registry, filtered by task.
az acr task logs -r myregistry -n MyTask
Show logs for a particular run.
az acr task logs -r myregistry --run-id runId
Show logs for the last created run in the registry that built the image 'hello-world'.
az acr task logs -r myregistry --image hello-world
Required Parameters
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
The name of the image. May include a tag in the format 'name:tag' or digest in the format 'name@digest'.
The name of the task.
Indicates whether the logs should be displayed in raw format.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The unique run identifier.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task run
Manually trigger a task that might otherwise be waiting for git commits or base image update triggers.
az acr task run --name
--registry
[--agent-pool]
[--arg]
[--context]
[--file]
[--log-template]
[--no-format]
[--no-logs]
[--no-wait]
[--resource-group]
[--secret-arg]
[--set]
[--set-secret]
[--target]
[--update-trigger-token]
Examples
Trigger a task run.
az acr task run -n MyTask -r myregistry
Trigger a task run by overriding the context and file passed during Task create with a remote repository.
az acr task run -n MyTask -r myregistry -c https://github.com/Azure-Samples/acr-build-helloworld-node.git -f Dockerfile
Trigger a task run by overriding the context and file passed during Task create with a local context.
az acr task run -n MyTask -r myregistry -c . -f Dockerfile
Trigger a task run by adding or overriding build arguments set during Task create.
az acr task run -n MyTask -r myregistry --arg DOCKER_CLI_BASE_IMAGE=docker:18.03.0-ce-git
Required Parameters
The name of the task.
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
The name of the agent pool.
Build argument in '--arg name[=value]' format. Multiples are supported by passing '--arg name[=value]' multiple times. IMPORTANT: This parameter should not include passwords, access tokens, or sensitive information of any kind. This parameter value will be visible to the ACR team for debugging purposes.
The full URL to the source code repository (Requires '.git' suffix for a github repo) or a remote tarball (e.g., 'http://server/context.tar.gz'), or the repository of an OCI artifact in an Azure container registry (e.g., 'oci://myregistry.azurecr.io/myartifact:mytag'). If '/dev/null' is specified, the value will be set to None and ignored. This is a required argument if the task is not a system task.
Relative path of the the task/docker file to the source code root folder. Task files must be suffixed with '.yaml' or piped from the standard input using '-'.
The repository and tag template for run log artifact using the format: 'log/repo:tag' (e.g., 'acr/logs:{{.Run.ID}}'). Only applicable to CMK enabled registry.
Indicates whether the logs should be displayed in raw format.
Do not show logs after successfully queuing the build.
Do not wait for the run to complete and return immediately after queuing the run.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Secret build argument in '--secret-arg name[=value]' format. Multiples are supported by passing '--secret-arg name[=value]' multiple times. This parameter value is not surfaced to the ACR team and is more suitable for sensitive information.
Task value in '--set name[=value]' format. Multiples supported by passing --set multiple times.
Secret task value in '--set-secret name[=value]' format. Multiples supported by passing --set-secret multiple times.
The name of the target build stage.
The payload that will be passed back alongwith the base image trigger notification.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task show
Get the properties of a named task for an Azure Container Registry.
az acr task show --name
--registry
[--resource-group]
[--with-secure-properties]
Examples
Get the properties of a task, displaying the results in a table.
az acr task show -n MyTask -r myregistry -o table
Get the properties of a task, including secure properties.
az acr task show -n MyTask -r myregistry --with-secure-properties
Required Parameters
The name of the task.
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Indicates whether the secure properties of a task should be returned.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task show-run
Get the properties of a specified run of an Azure Container Registry Task.
az acr task show-run --registry
--run-id
[--resource-group]
Examples
Get the details of a run, displaying the results in a table.
az acr task show-run -r myregistry --run-id runId -o table
Required Parameters
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
The unique run identifier.
Optional Parameters
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task update
Update a task for an Azure Container Registry.
az acr task update --name
--registry
[--agent-pool]
[--arg]
[--auth-mode {Default, None}]
[--base-image-trigger-enabled {false, true}]
[--base-image-trigger-type {All, Runtime}]
[--cmd]
[--commit-trigger-enabled {false, true}]
[--context]
[--cpu]
[--file]
[--git-access-token]
[--image]
[--log-template]
[--no-cache {false, true}]
[--no-push {false, true}]
[--platform]
[--pull-request-trigger-enabled {false, true}]
[--resource-group]
[--secret-arg]
[--set]
[--set-secret]
[--status {Disabled, Enabled}]
[--target]
[--timeout]
[--update-trigger-endpoint]
[--update-trigger-payload-type {Default, Token}]
[--values]
Examples
Update base image updates to trigger on all dependent images of a multi-stage dockerfile, and status of a task in an Azure Container Registry.
az acr task update -n MyTask -r myregistry --base-image-trigger-type All --status Disabled
Update platform for the Build step of your Task to Windows (prev Linux).
az acr task update -n MyTask -r myregistry --platform Windows
Update task's triggers and context for an Azure Container Registry.
az acr task update -n hello-world -r myregistry -f Dockerfile \
--commit-trigger-enabled false --pull-request-trigger-enabled true \
-c https://msazure.visualstudio.com/DefaultCollection/Project/_git/Repo#Branch:Folder
Update a task for an Azure Container Registry. (autogenerated)
az acr task update --image MyImage --name MyTask --registry myregistry \
--context https://github.com/Azure-Samples/acr-build-helloworld-node.git
Required Parameters
The name of the task.
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
Optional Parameters
The name of the agent pool.
Build argument in '--arg name[=value]' format. Multiples are supported by passing '--arg name[=value]' multiple times. IMPORTANT: This parameter should not include passwords, access tokens, or sensitive information of any kind. This parameter value will be visible to the ACR team for debugging purposes.
Auth mode of the source registry.
Indicates whether the base image trigger is enabled.
The type of the auto trigger for base image dependency updates.
Commands to execute. This also supports additional docker run parameters (https://docs.docker.com/engine/reference/commandline/run/) or even other docker commands (https://docs.docker.com/engine/reference/commandline/docker/).
Indicates whether the source control commit trigger is enabled.
The full URL to the source code repository (Requires '.git' suffix for a github repo) or a remote tarball (e.g., 'http://server/context.tar.gz'), or the repository of an OCI artifact in an Azure container registry (e.g., 'oci://myregistry.azurecr.io/myartifact:mytag'). If '/dev/null' is specified, the value will be set to None and ignored. This is a required argument if the task is not a system task.
The CPU configuration in terms of number of cores required for the run.
Relative path of the the task/docker file to the source code root folder. Task files must be suffixed with '.yaml' or piped from the standard input using '-'.
The access token used to access the source control provider.
The name and tag of the image using the format: '-t repo/image:tag'. Multiple tags are supported by passing -t multiple times.
The repository and tag template for run log artifact using the format: 'log/repo:tag' (e.g., 'acr/logs:{{.Run.ID}}'). Only applicable to CMK enabled registry.
Indicates whether the image cache is enabled.
Indicates whether the image built should be pushed to the registry.
The platform where build/task is run, Eg, 'windows' and 'linux'. When it's used in build commands, it also can be specified in 'os/arch/variant' format for the resulting image. Eg, linux/arm/v7. The 'arch' and 'variant' parts are optional.
Indicates whether the source control pull request trigger is enabled. The trigger is disabled by default.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Secret build argument in '--secret-arg name[=value]' format. Multiples are supported by passing '--secret-arg name[=value]' multiple times. This parameter value is not surfaced to the ACR team and is more suitable for sensitive information.
Task value in '--set name[=value]' format. Multiples supported by passing --set multiple times.
Secret task value in '--set-secret name[=value]' format. Multiples supported by passing --set-secret multiple times.
The current status of task.
The name of the target build stage.
The timeout in seconds.
The full URL of the endpoint to receive base image update trigger notifications.
Indicates whether to include metadata about the base image trigger in the payload alongwith the update trigger token, when a notification is sent.
The task values/parameters file path relative to the source context.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az acr task update-run
Patch the run properties of an Azure Container Registry Task.
az acr task update-run --registry
--run-id
[--no-archive {false, true}]
[--resource-group]
Examples
Update an existing run to be archived.
az acr task update-run -r myregistry --run-id runId --no-archive false
Required Parameters
The name of the container registry. It should be specified in lower case. You can configure the default registry name using az configure --defaults acr=<registry name>
.
The unique run identifier.
Optional Parameters
Indicates whether the run should be archived.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.