将 ACR 集成到 AKS 的预期方式是什么?

What is the expected way to integrate ACR to AKS?

正在寻找将 ACR 与 AKS 集成用于生产环境的最佳方法,似乎有多种方法,例如在安装期间和安装后使用服务主体,以及使用映像拉取密码等。

因此对于我们的生产环境寻找最推荐的选项,其中要求如下。

恕我直言,最好的方法是 Azure RBAC。创建 AKS 时不需要附加 ACR。您可以利用 Azure RBAC 并将角色“AcrPull”分配给节点池的 Kubelet 身份。这可以为您拥有的每个 ACR 完成:

export KUBE_ID=$(az aks show -g <resource group> -n <aks cluster name> --query identityProfile.kubeletidentity.objectId -o tsv)
export ACR_ID=$(az acr show -g <resource group> -n <acr name> --query id -o tsv)
az role assignment create --assignee $KUBE_ID --role "AcrPull" --scope $ACR_ID

地形:

  resource "azurerm_role_assignment" "example" {
    scope                            = azurerm_container_registry.acr.id
    role_definition_name             = "AcrPull"
    principal_id                     = azurerm_kubernetes_cluster.aks.kubelet_identity[0].object_id
  }