如何从 k3s pod 中提取 ACR 镜像

时间:2021-07-12 06:20:13

标签: kubernetes kubernetes-pod azure-container-registry coredns

我已经自定义了 coredns 映像并将其推送到我的 azure 容器注册表 (ACR)。
现在在 k3s 安装后的默认 coredns pod 中,我想使用 my_azure_acr_repo/proj/customize-coredns:latest 图像而不是 rancher/coredns-coredns:1.8.3。所以我编辑了 coredns 部署 kubectl edit deploy coredns -n kube-system 并用牧场主图像替换了我的 acr 图像。但是现在 coredns pod 无法提取我的 acr 映像并在 pod 描述中给出错误:

Failed to pull image "my_azure_acr_repo/proj/customize-coredns:latest": rpc error:
code = Unknown desc = failed to pull and unpack image "my_azure_acr_repo/proj/customize-coredns:latest": 
failed to resolve reference "my_azure_acr_repo/proj/customize-coredns:latest": failed to 
authorize: failed to fetch anonymous token: unexpected status: 401 Unauthorized

如何验证 acr 图像,以便 pod 拉取它?

1 个答案:

答案 0 :(得分:3)

这是因为您的容器无权从您的私有 ACR 中提取映像。

首先,您必须创建密码以便您可以访问您的 ACR,然后使用 imagePullSecrets

在您的部署中传递该密码

您可以通过此命令创建秘密,请确保替换您的凭据变量

kubectl create secret docker-registry <name> --docker-server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL

对于 ACR,它将是这样的

kubectl create secret docker-registry regkey --docker-server=https://myregistry.azurecr.io --docker-username=ACR_USERNAME --docker-password=ACR_PASSWORD --docker-email=ANY_EMAIL_ADDRESS

您的部署规范

spec:
  containers:
    - name: foo
      image: janedoe/awesomeapp:v1
  imagePullSecrets:
    - name: regkey

更多相关信息。

https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod