D8 kubernetes 之pod镜像拉取策略

》 在pod配置中,imagePulllicy字段用于设置镜像拉取策略。有以下可选项:

Always:默认值,始终从镜像仓库拉取最新的镜像
IfNotPresent:优先使用节点上的镜像。如果节点上的镜像不存在,则从镜像仓库拉取
Never:仅适用节点上的镜像。如果节点上的镜像不存在,则pod处于错误状态。
apiVersion: v1
kind: Pod
metadata:
  labels:
    app: pod-nginx
  name: pod-nginx
spec:
  containers:
  - name: web
    image: uhub.service.ucloud.cn/librarys/nginx:1.23
    imagePullPolicy: IfNotPresent

上述配置中,imagePullPolicy的字段值为IfNotPresent,这表示创建pod时优先使用节点上的 uhub.service.ucloud.cn/librarys/nginx:1.23 镜像

posted @ 2024-08-23 18:41  Hello_worlds  阅读(23)  评论(0编辑  收藏  举报