kubernetes实现私有镜像下载
现在进行docker登录
docker login -u xxx -p
然后
cat ~/.docker/config.json | base64
得到一个密钥
创建k8s密钥的yaml
kind: Secret
apiVersion: v1
metadata:
name: regcred
data:
.dockerconfigjson: 密钥
type: kubernetes.io/dockerconfigjson
在要使用的deployment yaml文件上添加
spec:
template:
spec:
imagePullSecrets:
- name: regcred
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭