常用的一些操作记录
imagePullSecrets
kubectl -n [namespace] create secret docker-registry regsecret --docker-server=harbor.abcdefg.net --docker-username=stg-k8s --docker-password=
该密钥只能当前namespace使用
yaml内使用方法:
containers:
- name: nginx
image: harbor.abcdefg.net/test/qa/nginx:1.14
ports:
- containerPort: 80
imagePullSecrets:
- name: regsecret