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
Copy file name to clipboardExpand all lines: articles/container-registry/quickstart-connected-registry-arc-cli.md
+15-14Lines changed: 15 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ By deploying the connected Registry Arc extension, you can synchronize container
89
89
90
90
For secure deployment of the connected registry extension, generate the connection string, including a new password, transport protocol, and create the `protected-settings-extension.json` file required for the extension deployment with [az acr connected-registry get-settings][az-acr-connected-registry-get-settings] command:
@@ -124,7 +124,7 @@ By deploying the connected Registry Arc extension, you can synchronize container
124
124
--query ACR_REGISTRY_CONNECTION_STRING \
125
125
--output tsv \
126
126
--yes | tr -d '\r')\" }" > settings.json
127
-
```
127
+
```
128
128
129
129
>[!NOTE]
130
130
> The cat and echo commands create the `protected-settings-extension.json` file with the connection string details, injecting the contents of the connection string into the `protected-settings-extension.json` file, a necessary step for the extension deployment. The [az acr connected-registry get-settings][az-acr-connected-registry-get-settings] command generates the connection string, including the creation of a new password and the specification of the transport protocol.
@@ -133,15 +133,15 @@ By deploying the connected Registry Arc extension, you can synchronize container
133
133
134
134
Deploy the connected registry extension with the specified configuration details using the [az k8s-extension create][az-k8s-extension-create] command:
135
135
136
-
```azurecli
136
+
```azurecli
137
137
az k8s-extension create --cluster-name myarck8scluster \
- The [az k8s-extension create][az-k8s-extension-create] command deploys the connected registry extension on the Kubernetes cluster with the provided configuration parameters and protected settings file.
147
147
- It ensures secure trust distribution between the connected registry and all client nodes within the cluster, and installs the cert-manager service for Transport Layer Security (TLS) encryption.
@@ -156,15 +156,16 @@ To verify the deployment of the connected registry extension on the Arc-enabled
156
156
157
157
Run the [az k8s-extension show][az-k8s-extension-show] command to check the deployment status of the connected registry extension:
158
158
159
-
```azurecli
159
+
```azurecli
160
160
az k8s-extension show --name myconnectedregistry \
161
161
--cluster-name myarck8scluster \
162
162
--resource-group myresourcegroup \
163
163
--cluster-type connectedClusters
164
-
```
164
+
```
165
+
165
166
**Example Output**
166
167
167
-
```output
168
+
```output
168
169
{
169
170
"aksAssignedIdentity": null,
170
171
"autoUpgradeMinorVersion": true,
@@ -211,7 +212,7 @@ To verify the deployment of the connected registry extension on the Arc-enabled
Copy file name to clipboardExpand all lines: articles/container-registry/tutorial-connected-registry-arc.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,10 @@ Connected registry trust distribution refers to the process of securely distribu
32
32
In this tutorial, you:
33
33
34
34
> [!div class="checklist"]
35
-
> -[Deploy Connected registry extension using preinstalled cert-manager.](#deploy-connected-registry-extension-using-preinstalled-cert-manager)
35
+
> -[Deploy Connected registry extension using preinstalled cert-manager.](#deploy-connected-registry-extension-using-your-preinstalled-cert-manager)
36
36
> -[Deploy Connected registry extension using Bring Your Own Certificate (BYOC).](#deploy-connected-registry-extension-using-bring-your-own-certificate-byoc)
37
37
> -[Deploy Connected registry with kubernetes secret management.](#deploy-connected-registry-with-kubernetes-secret-management)
38
-
> -[Deploy the Connected registry Arc extension with inherent trust distribution or reject Connected registry trust distribution.](#deploy-the-connected-registry-arc-extension-with-inherent-trust-distribution-and-reject-connected-registry-trust-distribution)
38
+
> -[Deploy the Connected registry Arc extension with inherent trust distribution or reject Connected registry trust distribution.](#deploy-the-connected-registry-using-your-own-trust-distribution-and-disable-the-connected-registrys-default-trust-distribution)
0 commit comments