当前位置:   article > 正文

k8s: 从私有仓库harbor获取镜像

k8s: 从私有仓库harbor获取镜像

一、根据私有仓库的用户名密码等信息创建secret

kubectl create secret docker-registry my-registry-secret \
--docker-server=xxx.xxx.xxx.xxx \
--docker-username=admin \
--docker-password=Harbor12345 \
--docker-email=xxxx@sina.com
  • 1
  • 2
  • 3
  • 4
  • 5

二、在清单文件中使用imagePullSecrets来引入上面这个步骤中创建的secret

apiVersion: v1
kind: Pod
metadata:
  name: mypod
spec:
  containers:
  - name: mycontainer
    image: xxx.xxx.xxx.xxx/hive/hello:1.0
  imagePullSecrets:
  - name: my-registry-secret
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/530421
推荐阅读
相关标签
  

闽ICP备14008679号