在k8s中,拉取本地镜像或远程镜像时,需要授权。

创建secret
kubectl create secret docker-registry secret-key --docker-server=http://172.16.0.107 --docker-username=admin --docker-password=password -n <NAMESPACE>
K8s自动拉取镜像权限
以下是imagePullSecrets的配置方式。
name: secret-key 这个就是我们需要使用的配置。

imagePullSecrets:
- name: secret-key
containers:
- image: 172.16.0.107/base/kkkk:4.5.1
securityContext:
privileged: true

————————————————
版权声明:本文为CSDN博主「wenwst」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/wenwst/article/details/117530936

发表评论

邮箱地址不会被公开。 必填项已用*标注