Skip to content

Commit f6f8de6

Browse files
committed
Resolving remaining warnings in build report
1 parent 59058df commit f6f8de6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/aks/cluster-container-registry-integration.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.devlang: azurecli
1212

1313
You need to establish an authentication mechanism when using [Azure Container Registry (ACR)][acr-intro] with Azure Kubernetes Service (AKS). This operation is implemented as part of the Azure CLI, Azure PowerShell, and Azure portal experiences by granting the required permissions to your ACR. This article provides examples for configuring authentication between these Azure services.
1414

15-
You can set up the AKS to ACR integration in a few steps using the Azure CLI, Azure PowerShell, or Azure portal. The AKS to ACR integration assigns the [**AcrPull** role][acr-pull] to the [Azure Active Directory (AAD) **managed identity**][aad-identity] associated with your AKS cluster.
15+
You can set up the AKS to ACR integration in a few steps using the Azure CLI, Azure PowerShell, or Azure portal. The AKS to ACR integration assigns the [**AcrPull** role][acr-pull] to the [Azure Active Directory (Azure AD) **managed identity**][aad-identity] associated with your AKS cluster.
1616

1717
> [!NOTE]
1818
> This article covers automatic authentication between AKS and ACR. If you need to pull an image from a private external registry, use an [image pull secret][image-pull-secret].
@@ -26,7 +26,7 @@ You can set up the AKS to ACR integration in a few steps using the Azure CLI, Az
2626

2727
## Create a new AKS cluster with ACR integration
2828

29-
You can set up AKS and ACR integration during the creation of your AKS cluster. To allow an AKS cluster to interact with ACR, an AAD managed identity is used.
29+
You can set up AKS and ACR integration during the creation of your AKS cluster. To allow an AKS cluster to interact with ACR, an Azure AD managed identity is used.
3030

3131
### Create an ACR
3232

@@ -56,7 +56,7 @@ New-AzContainerRegistry -Name $MYACR -ResourceGroupName myContainerRegistryResou
5656

5757
### Create a new AKS cluster and integrate with an existing ACR
5858

59-
If you have already have an ACR, use the following command to create a new AKS cluster with ACR integration. This command allows you to authorize an existing ACR in your subscription and configures the appropriate **AcrPull** role for the managed identity. Supply valid values for your parameters below.
59+
If you already have an ACR, use the following command to create a new AKS cluster with ACR integration. This command allows you to authorize an existing ACR in your subscription and configures the appropriate **AcrPull** role for the managed identity. Supply valid values for your parameters below.
6060

6161
#### [Azure CLI](#tab/azure-cli)
6262

@@ -239,21 +239,21 @@ nginx0-deployment-669dfc4d4b-xdpd6 1/1 Running 0 20s
239239

240240
### Troubleshooting
241241

242-
* Run the [az aks check-acr](/cli/azure/aks#az-aks-check-acr) command to validate that the registry is accessible from the AKS cluster.
242+
* Run the [`az aks check-acr`](/cli/azure/aks#az-aks-check-acr) command to validate that the registry is accessible from the AKS cluster.
243243
* Learn more about [ACR monitoring](../container-registry/monitor-service.md).
244244
* Learn more about [ACR health](../container-registry/container-registry-check-health.md).
245245

246246
<!-- LINKS - external -->
247247

248248
[image-pull-secret]: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
249249
[summary-msi]: use-managed-identity.md#summary-of-managed-identities
250-
[acr-pull]: ../role-based-access-control/built-in-roles#acrpull
250+
[acr-pull]: ../role-based-access-control/built-in-roles.md#acrpull
251251
[azure-cli-install]: /cli/azure/install-azure-cli
252252
[azure-powershell-install]: /powershell/azure/install-az-ps
253253
[acr-intro]: ../container-registry/container-registry-intro.md
254254
[aad-identity]: ../active-directory/managed-identities-azure-resources/overview.md
255-
[rbac-owner]: ../role-based-access-control/built-in-roles#owner
256-
[rbac-classic]: ../role-based-access-control/rbac-and-directory-admin-roles#classic-subscription-administrator-roles
255+
[rbac-owner]: ../role-based-access-control/built-in-roles.md#owner
256+
[rbac-classic]: ../role-based-access-control/rbac-and-directory-admin-roles.md#classic-subscription-administrator-roles
257257
[kubelet]: https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/
258258
[ps-detach]: /powershell/module/az.aks/set-azakscluster#-acrnametodetach
259259
[cli-param]: /cli/azure/aks#az-aks-update-optional-parameters

0 commit comments

Comments
 (0)