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

前端 未结 9 1477
梦毁少年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:51

    One issue that may cause an ImagePullBackOff especially if you are pulling from a private registry is if the pod is not configured with the imagePullSecret of the private registry.

    An authentication error may cause an imagePullBackOff.

提交回复
热议问题