Skip to content

Commit 020687d

Browse files
Merge pull request #232852 from tejaswikolli-web/17422318
8GB Layer size
2 parents e597a2b + eb4bc03 commit 020687d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@ Please complete the prerequisites outlined [here](./container-registry-transfer-
1919
- You have an existing Keyvault with a secret containing a valid SAS token with the necessary permissions in both clouds.
2020
- You have a recent version of Az CLI installed in both clouds.
2121

22+
> [!IMPORTANT]
23+
- The ACR Transfer supports artifacts with the layer size limits to 8 GB due to the technical limitations.
24+
2225
## Consider using the Az CLI extension
2326

24-
For most non-automated use-cases, we recommend using the Az CLI Extension if possible. You can view documentation for the Az CLI Extension [here](./container-registry-transfer-cli.md).
27+
For most nonautomated use-cases, we recommend using the Az CLI Extension if possible. You can view documentation for the Az CLI Extension [here](./container-registry-transfer-cli.md).
2528

2629
## Create ExportPipeline with Resource Manager
2730

@@ -204,7 +207,7 @@ az storage blob list \
204207

205208
Use the AzCopy tool or other methods to [transfer blob data](../storage/common/storage-use-azcopy-v10.md#transfer-data) from the source storage account to the target storage account.
206209

207-
For example, the following [`azcopy copy`](../storage/common/storage-ref-azcopy-copy.md) command copies myblob from the *transfer* container in the source account to the *transfer* container in the target account. If the blob exists in the target account, it's overwritten. Authentication uses SAS tokens with appropriate permissions for the source and target containers. (Steps to create tokens are not shown.)
210+
For example, the following [`azcopy copy`](../storage/common/storage-ref-azcopy-copy.md) command copies myblob from the *transfer* container in the source account to the *transfer* container in the target account. If the blob exists in the target account, it's overwritten. Authentication uses SAS tokens with appropriate permissions for the source and target containers. (Steps to create tokens aren't shown.)
208211

209212
```console
210213
azcopy copy \
@@ -271,7 +274,7 @@ az acr repository list --name <target-registry-name>
271274

272275
## Redeploy PipelineRun resource
273276

274-
If redeploying a PipelineRun resource with *identical properties*, you must leverage the **forceUpdateTag** property. This property indicates that the PipelineRun resource should be recreated even if the configuration has not changed. Please ensure forceUpdateTag is different each time you redeploy the PipelineRun resource. The example below recreates a PipelineRun for export. The current datetime is used to set forceUpdateTag, thereby ensuring this property is always unique.
277+
If redeploying a PipelineRun resource with *identical properties*, you must leverage the **forceUpdateTag** property. This property indicates that the PipelineRun resource should be recreated even if the configuration has not changed. Ensure forceUpdateTag is different each time you redeploy the PipelineRun resource. The example below recreates a PipelineRun for export. The current datetime is used to set forceUpdateTag, thereby ensuring this property is always unique.
275278

276279
```console
277280
CURRENT_DATETIME=`date +"%Y-%m-%d:%T"`

0 commit comments

Comments
 (0)