标签:查询 解决 列表 image epel 空间 htm 国内 OLE
由于一些原因,在国内无法访问gcr.io上的镜像,在安装kubernetes时,很多官方镜像又是都存在gcr.io上,在国内的一些教程中大都使用阿里云的镜像,但是由于阿里云镜像地址更换等原因,当按照文档使用阿里云镜像时可能已经变得不可用.下面结合实际经验,列举出几种常用的办法来解决这个问题!
地址一:registry.aliyuncs.com/google_containers
地址二:registry.cn-hangzhou.aliyuncs.com/google_containers
mirrorgooglecontainers
? 这个域名下同步了很多谷歌镜像,比如说要下载kube-proxy-amd64:v1.11.3
这个镜像,可以使用docker pull mirrorgooglecontainers/kube-proxy-amd64:v1.11.3
来进行下载,下载以后对镜像重新打标签:
# 1、先pull下来
[root@k8s-master01 Ratel]# docker pull mirrorgooglecontainers/kube-proxy-amd64:v1.11.3
v1.11.3: Pulling from mirrorgooglecontainers/kube-proxy-amd64
06545d1c6152: Pull complete
d5f5a75f5817: Pull complete
c21dcda023ab: Pull complete
Digest: sha256:cd0c257e3f4a79a0ae7964b3429c491e9d43bf1bb015618a4c311165d3915b7b
Status: Downloaded newer image for mirrorgooglecontainers/kube-proxy-amd64:v1.11.3
docker.io/mirrorgooglecontainers/kube-proxy-amd64:v1.11.3
# 2、重新打标签
[root@k8s-master01 Ratel]# docker tag docker.io/mirrorgooglecontainers/kube-proxy-amd64:v1.11.3 k8s.gcr.io/kube-proxy-amd64:v1.11.3
# 3、查看镜像,然后就可以直接使用这个镜像了
[root@k8s-master01 Ratel]# docker images | grep k8s.gcr.io/kube-proxy-amd64
k8s.gcr.io/kube-proxy-amd64 v1.11.3 be5a6e1ecfa6 2 years ago 97.8MB
项目地址: https://github.com/zhangguanzhang/gcr.io
[root@k8s-master01 ~]# yum install epel-release
[root@k8s-master01 ~]# yum list jq
[root@k8s-master01 ~]# yum install jq -y
[root@k8s-master01 ~]# curl -s https://zhangguanzhang.github.io/bash/pull.sh | bash -s search gcr.io
cloud-builders
cloud-datalab
cloudsql-docker
distroless
google-appengine
google-samples
google_containers
google_samples
heptio-images
。。。。
[root@k8s-master01 ~]# curl -s https://zhangguanzhang.github.io/bash/pull.sh | bash -s search gcr.io/google_containers
# gcr.io/google_containers ---> namespace ——————> 根据上面查询出来的namespace查
addon-builder
addon-resizer-amd64
addon-resizer-arm
addon-resizer-arm64
addon-resizer-ppc64le
addon-resizer-s390x
addon-resizer
aggregator
alpine-iptables-amd64
alpine-iptables-arm
alpine-iptables-arm64
。。。
[root@k8s-master01 ~]# curl -s https://zhangguanzhang.github.io/bash/pull.sh | bash -s search gcr.io/google_containers/coredns
# 在namespace后面搜索image的版本tag
1.0.1
1.0.1__amd64_linux
1.0.1__arm64_linux
1.0.1__arm_linux
1.0.1__ppc64le_linux
1.0.1__s390x_linux
1.0.6
1.0.6__amd64_linux
1.0.6__arm64_linux
1.0.6__arm_linux
1.0.6__ppc64le_linux
1.0.6__s390x_linux
1.1.3
1.1.3__amd64_linux
。。。
原文地址:https://www.cnblogs.com/tylerzhou/p/10971341.html
标签:查询 解决 列表 image epel 空间 htm 国内 OLE
原文地址:https://www.cnblogs.com/hsyw/p/14213712.html