如何从kubernetes中的dockerhub中提取图像?

前端之家收集整理的这篇文章主要介绍了如何从kubernetes中的dockerhub中提取图像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我打算在我的kubernetes-clustering infra中部署一个应用程序.
我把图像推到了dockerhub repo.如何从dockerhub中提取图像?

最佳答案
一行命令创建Docker注册表机密

kubectl create secret docker-registry regcred --docker-username=

然后,您可以在规范下的部署文件中使用它

spec:
  containers:
  - name: private-reg-container-name
    image: 

更多细节:
https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/#create-a-secret-in-the-cluster-that-holds-your-authorization-token

原文链接:https://www.f2er.com/docker/436653.html

猜你在找的Docker相关文章