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
@@ -306,12 +307,20 @@ az acr repository list --name <target-registry-name>
306
307
307
308
## Delete pipeline resources
308
309
309
-
To delete a pipeline resource, delete its Resource Manager deployment by using the [az deployment group delete][az-deployment-group-delete] command. The following example deletes an ExportPipeline deployment named *exportPipeline*:
310
+
To delete a pipeline resource, delete its Resource Manager deployment by using the [az deployment group delete][az-deployment-group-delete] command. The following examples delete the pipeline resources created in this article:
310
311
311
312
```azurecli
312
313
az deployment group delete \
313
314
--resource-group $SOURCE_RG \
314
315
--name exportPipeline
316
+
317
+
az deployment group delete \
318
+
--resource-group $SOURCE_RG \
319
+
--name exportPipelineRun
320
+
321
+
az deployment group delete \
322
+
--resource-group $TARGET_RG \
323
+
--name importPipeline
315
324
```
316
325
317
326
## Troubleshooting
@@ -324,8 +333,10 @@ az deployment group delete \
324
333
* Existing storage blob in source storage account might not be overwritten during multiple export runs. Confirm that the OverwriteBlob option is set in the export run and the SAS token has sufficient permissions.
325
334
* Storage blob in target storage account might not be deleted after successful import run. Confirm that the DeleteBlobOnSuccess option is set in the import run and the SAS token has sufficient permissions.
326
335
* Storage blob not created or deleted. Confirm that container specified in export or import run exists, or specified storage blob exists for manual import run.
336
+
***AzCopy issues**
337
+
* See [Troubleshoot AzCopy issues](../storage/common/storage-use-azcopy-configure.md#troubleshoot-issues).
327
338
***Artifacts transfer problems**
328
-
*Artifacts are transferred incompletely or not at all. Confirm spelling of artifacts in export run, and name of blob in export and import runs. Confirm you are transferring a maximum of 10 artifacts.
339
+
*Not all artifacts, or none, are transferred. Confirm spelling of artifacts in export run, and name of blob in export and import runs. Confirm you are transferring a maximum of 10 artifacts.
329
340
* Pipeline run might not have completed. An export or import run can take some time.
330
341
* For other pipeline issues, provide the deployment [correlation ID](../azure-resource-manager/templates/deployment-history.md) of the export run or import run to the Azure Container Registry team.
0 commit comments