首页 > 代码库 > Kubernetes Cluster Error Accessing gcr.io
Kubernetes Cluster Error Accessing gcr.io
使用
kubectl run nginx --image=nginx
后查看:
kubectl describe pods
发现处于creating状态,并且报错:
(unable to ping registry endpoint https://gcr.io/v0/\nv2 ping attempt failed with error: Get https://gcr.io/v2/:...
原因:gcr.io被墙,无法ping到。
解决方法:
在各个nodes上,从dockerhub拉取相关image并打新的tag:(可以使用ansible解决)
docker pull docker.io/kubernetes/pausedocker tag kubernetes/pause gcr.io/google_containers/pause:2.0docker tag gcr.io/google_containers/pause:2.0 gcr.io/google_containers/pause
再次在master上使用
kubectl run nginx --image=nginxkubectl get deployments
可以发现nginx已经启动。
参考链接:http://blog.csdn.net/wangtaoking1/article/details/49122977
Kubernetes Cluster Error Accessing gcr.io
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。