Skip to content

Commit efb2fbb

Browse files
authored
Update tutorial-connected-registry-sync.md
Updated sections content and values.
1 parent cfbd2cd commit efb2fbb

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
title: "Sync Connected registry with Azure arc"
2+
title: "Connected registry synchronization scheduling"
33
description: "Sync the Connected registry extension with Azure Arc synchronization schedule and window."
44
author: tejaswikolli-web
55
ms.author: tejaswikolli
66
ms.service: azure-container-registry
77
ms.topic: tutorial #Don't change.
88
ms.date: 06/17/2024
99

10-
#customer intent: Learn how to sync the Connected registry extension with with synchronization schedule and window.
10+
#customer intent: Learn how to sync the connected registry extension using a synchronization schedule and window.
1111
---
1212

13-
# Sync Connected registry with Azure Arc in Scheduled window
13+
# Configuring the connected registry sync schedule and window
1414

15-
In this tutorial, you learn how to synchronize the Connected registry extension with Azure Arc. The synchronization process includes updating the Connected registry extension with synchronization schedule and window.
15+
In this tutorial, you’ll learn how to configure the synchronization for a connected registry. The process includes updating the connected registry extension with a synchronization schedule and window.
1616

17-
The tutorial helps you to update the synchronization schedule for a Connected registry in Azure Container Registry using Azure CLI commands. It guides you on how to set up the Connected registry to sync continuously every minute or sync every day at midnight.
17+
You’ll be guided on how to update the synchronization schedule using Azure CLI commands. This tutorial covers setting up the connected registry to sync continuously every minute or to sync daily at midnight.
1818

19-
The commands use CRON expressions to define the sync schedule and ISO 8601 duration format for the sync window. Remember to replace the placeholders with your actual registry names when executing the commands.
19+
The commands utilize CRON expressions to define the sync schedule and the ISO 8601 duration format for the sync window. Remember to replace the placeholders with your actual registry names when executing the commands.
2020

2121
You learn how to:
2222

@@ -28,11 +28,11 @@ You learn how to:
2828

2929
To complete this tutorial, you need the following resources:
3030

31-
* Follow the [quickstart][quickstart] to create an Azure Arc-enabled Kubernetes cluster. Deploying Secure-by-default settings imply the following configuration is being used: HTTPS, Read Only, Trust Distribution, Cert Manager service.
31+
* Follow the [quickstart][quickstart] as needed.
3232

33-
## Update the Connected registry to sync every day at midnight
33+
## Update the connected registry to sync every day at midnight
3434

35-
1. Run the [az acr connected-registry update][az-acr-connected-registry-update] command to update the Connected registry synchronization schedule to occasionally connect and sync every day at midnight with sync window for 4 hours duration.
35+
1. Run the [az acr connected-registry update][az-acr-connected-registry-update] command to update the connected registry synchronization schedule to occasionally connect and sync every day at midnight with sync window for 4 hours duration.
3636

3737
For example, the following command configures the connected registry `myconnectedregistry` to schedule sync daily occur every day at 12:00 PM UTC at midnight and set the synchronization window to 4 hours (PT4H). The duration for which the connected registry will sync with the parent ACR `myacrregistry` after the sync initiates.
3838

@@ -43,21 +43,21 @@ az acr connected-registry update --registry myacrregistry \
4343
--sync-window PT4H
4444
```
4545

46-
The configuration sync for the connected registry daily at noon UTC for 4 hours.
46+
The configuration syncs the connected registry daily at noon UTC for 4 hours.
4747

48-
## Update the Connected registry and sync continuously every minute
48+
## Update the connected registry to sync continuously every minute
4949

50-
1. Run the [az acr connected-registry update][az-acr-connected-registry-update] command to update the Connected registry synchronization to connect and sync continuously every minute.
50+
1. Run the [az acr connected-registry update][az-acr-connected-registry-update] command to update the connected registry synchronization to connect and sync continuously every minute.
5151

52-
For example, the following command configures the connected registry `myconnectedregistry` to schedule sync every minute.
52+
For example, the following command configures the connected registry `myconnectedregistry` to schedule sync every minute with the cloud registry.
5353

5454
```azurecli
5555
az acr connected-registry update --registry myacrregistry \
5656
--name myconnectedregistry \
5757
--sync-schedule "* * * * *"
5858
```
5959

60-
The configuration syncs every minute with the connected registry.
60+
The configuration syncs the connected registry with the cloud registry every minute.
6161

6262
## Next steps
6363

@@ -70,4 +70,4 @@ The configuration syncs every minute with the connected registry.
7070
7171
<!-- LINKS - internal -->
7272
[az-acr-connected-registry-update]: /cli/azure/acr/connected-registry#az-acr-connected-registry-update
73-
[quickstart]: quickstart-connected-registry-arc-cli.md
73+
[quickstart]: quickstart-connected-registry-arc-cli.md

0 commit comments

Comments
 (0)