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

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

    I had this error when I tried to create a replicationcontroller. The issue was, I wrongly spelt the nginx image name in template definition.

    Note: This error occurs when kubernetes is unable to pull the specified image from the repository.

提交回复
热议问题