Skip to content

Commit 543b3ef

Browse files
authored
Merge pull request #89188 from shahzzzam/master
add faq for task
2 parents c8fedd1 + 2177a66 commit 543b3ef

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

articles/container-registry/container-registry-faq.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,8 @@ Configure the Docker proxy to output of the previous command and the port 8888 (
445445

446446
- [How do I batch cancel runs?](#how-do-i-batch-cancel-runs)
447447
- [How do I include the .git folder in az acr build command?](#how-do-i-include-the-git-folder-in-az-acr-build-command)
448+
- [Does Tasks support GitLab for Source triggers?](#does-tasks-support-gitlab-for-source-triggers)
449+
- [What git repository management service does Tasks support?](#what-git-repository-management-service-does-tasks-support)
448450

449451
### How do I batch cancel runs?
450452

@@ -459,12 +461,31 @@ az acr task list-runs -r $myregistry --run-status Running --query '[].runId' -o
459461

460462
If you pass a local source folder to the `az acr build` command, the `.git` folder is excluded from the uploaded package by default. You can create a `.dockerignore` file with the following setting. It tells the command to restore all files under `.git` in the uploaded package.
461463

462-
```
464+
```sh
463465
!.git/**
464466
```
465467

466468
This setting also applies to the `az acr run` command.
467469

470+
### Does Tasks support GitLab for Source triggers?
471+
472+
We currently do not support GitLab for Source triggers.
473+
474+
### What git repository management service does Tasks support?
475+
476+
| Git service | Source context | Manual build | Auto build through commit trigger |
477+
|---|---|---|---|
478+
| GitHub | https://github.com/user/myapp-repo.git#mybranch:myfolder | Yes | Yes |
479+
| Azure Repos | https://dev.azure.com/user/myproject/_git/myapp-repo#mybranch:myfolder | Yes | Yes |
480+
| GitLab | https://gitlab.com/user/myapp-repo.git#mybranch:myfolder | Yes | No |
481+
| BitBucket | https://[email protected]/user/mayapp-repo.git#mybranch:myfolder | Yes | No |
482+
483+
## Run Error Message Troubleshooting
484+
485+
| Error message | Troubleshooting guide |
486+
|---|---|
487+
|No access was configured for the VM, hence no subscriptions were found|This could happen if you are using `az login --identity` in your ACR Task. This is a transient error and occurs when the role assignment of your Managed Identity hasn't propagated. Waiting a few seconds before retrying works.|
488+
468489
## CI/CD integration
469490

470491
- [CircleCI](https://github.com/Azure/acr/blob/master/docs/integration/CircleCI.md)

0 commit comments

Comments
 (0)