Skip to content

Commit 629372d

Browse files
committed
additional feedback
1 parent f4d0236 commit 629372d

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

articles/container-registry/container-registry-transfer-images.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@ For example, the following [`azcopy sync`](/azure/storage/common/storage-ref-azc
258258
azcopy sync \
259259
'https://<source-storage-account-name>.blob.core.windows.net/transfer/'$SOURCE_SAS \
260260
'https://<destination-storage-account-name>.blob.core.windows.net/transfer/'$TARGET_SAS \
261+
--force \
261262
--recursive
262263
```
263264

@@ -306,12 +307,20 @@ az acr repository list --name <target-registry-name>
306307

307308
## Delete pipeline resources
308309

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:
310311

311312
```azurecli
312313
az deployment group delete \
313314
--resource-group $SOURCE_RG \
314315
--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
315324
```
316325

317326
## Troubleshooting
@@ -324,8 +333,10 @@ az deployment group delete \
324333
* 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.
325334
* 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.
326335
* 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).
327338
* **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.
329340
* Pipeline run might not have completed. An export or import run can take some time.
330341
* 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.
331342

0 commit comments

Comments
 (0)