kubectl get pods command shows "ErrImageNeverPull" kubectl get pods command shows "ErrImageNeverPull" kubernetes kubernetes

kubectl get pods command shows "ErrImageNeverPull"


As Payal Jindal mentioned in the comment:

It worked fine. There was a problem with my docker installation.

Problem is now resolved. The way forward is to set the image pull policy to IfNotPresent or Always.

spec:    containers:        - imagePullPolicy: Always