What is the meaning of ImagePullBackOff status on a Kubernetes pod?

前端 未结 9 1467
梦毁少年i
梦毁少年i 2021-02-02 04:49

I\'m trying to run my first kubernetes pod locally. I\'ve run the following command (from here):

export ARCH=amd64
docker run -d \\
    --volume=/:/rootfs:ro \\
         


        
9条回答
  •  余生分开走
    2021-02-02 05:28

    You can specify also imagePullPolicy: Never in the container's spec:

    containers:
    - name: nginx
      imagePullPolicy: Never
      image: custom-nginx
      ports:
      - containerPort: 80
    

提交回复
热议问题