Kubernetes 无法从 gcr.io 中提取图像

Kubernetes unable to pull images from gcr.io

我是第一次尝试设置 Kubernetes。我正在按照 Fedora 手动安装 guide: http://kubernetes.io/v1.0/docs/getting-started-guides/fedora/fedora_manual_config.html

我正在尝试获取 kubernetes 插件 运行ning ,特别是 kube-ui。我像这样创建了服务和复制控制器:

kubectl create -f cluster/addons/kube-ui/kube-ui-rc.yaml --namespace=kube-system
kubectl create -f cluster/addons/kube-ui/kube-ui-svc.yaml --namespace=kube-system

当我运行

kubectl get events --namespace=kube-system

我看到这样的错误:

 Failed to pull image "gcr.io/google_containers/pause:0.8.0": image pull failed for gcr.io/google_containers/pause:0.8.0, this may be because there are no credentials on this request.  details: (Authentication is required.)

我应该如何告诉 kubernetes 进行身份验证?这在文档中没有涉及。那么我该如何解决这个问题?

如消息所述,您需要凭据。您在使用 Google 容器引擎吗?那么你需要 运行

gcloud config set project <your-project>
gcloud config set compute/zone <your-zone, like us-central1-f>
gcloud beta container clusters get-credentials --cluster <your-cluster-name>

那么您的 GCE 集群将拥有凭据

这是由于最近 gce 存储中断导致的,结果我们所有人在从 gcr(在后端使用 gce 存储)中提取图像时都遇到了这个错误。

您是否仍然看到此错误?