k8s imagePullSecrets拉取镜像的一种配置
在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