kubernetes拉取私有镜像仓库的镜像
2021-01-02 05:29
标签:reg rbo net profile pass uber spec doc containe 方式: 创建secret 查看secret kubernetes拉取私有镜像仓库的镜像 标签:reg rbo net profile pass uber spec doc containe 原文地址:https://www.cnblogs.com/yechen2019/p/13672134.htmlkubernetes拉取私有镜像仓库时需要使用镜像仓库的账号密码
apiVersion: v1
kind: Pod
metadata:
name: private-reg
spec:
containers:
- name: private-reg-container
image: quay.io/
上面指定了私有镜像仓库的秘钥存在
harborSecret
中。kubectl create secret docker-registry harborSecret --docker-server=quay.io --docker-username=
kubectl get secret harborSecret --output="jsonpath={.data.\.dockerconfigjson}" | base64 --decode
文章标题:kubernetes拉取私有镜像仓库的镜像
文章链接:http://soscw.com/index.php/essay/39514.html