k8使用secret拉取镜像失败的问题

k8使用secret拉取镜像失败的问题_第1张图片

 

 上图中编写的yaml文件是没有问题的,下面创建secret的命令出现了问题

kubectl create secret docker-registry  registry-pull-secret --docker-server=uhub.service.ucloud.cn --docker-username=***** --docker-password=*****

k8s拉取私库镜像创建的secret只能在相同namespace下使用该secret,所以修改一个命令

kubectl create secret docker-registry  registry-pull-secret --docker-server=uhub.service.ucloud.cn --docker-username=***** --docker-password=***** -n php5

再次创建,发现拉取镜像成功

你可能感兴趣的:(k8使用secret拉取镜像失败的问题)