This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
imagepreifx=registry.cn-hangzhou.aliyuncs.com/k8sth | |
images='kube-proxy-amd64:v1.11.2 kube-scheduler-amd64:v1.11.2 kube-controller-manager-amd64:v1.11.2 kube-apiserver-amd64:v1.11.2 etcd-amd64:3.2.18 coredns:1.1.3 pause:3.1 kubernetes-dashboard-amd64:v1.8.3' | |
for imageName in $images ; do | |
docker pull $imagepreifx/$imageName | |
docker tag $imagepreifx/$imageName k8s.gcr.io/$imageName | |
#docker rmi $imagepreifx/$imageName | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metabase/metabase:v0.28.0 |