kubernetes ImagePullBackOff

9/27/2018

kubectl run docapp --image=docapp:v1 --port=8080

After deploying nodejs into kubernetes, im getting ImagePullBackOff, Please suggest the solutions. I have attached snapshot below...

imagepullbackoff

minikube dashboard

-- Jagadeesan Annadurai
docker
kubernetes
minikube

1 Answer

9/27/2018

There is no image named "docapp" in official namespace in dockerhub. If you mean this image: https://hub.docker.com/r/alexkott/docapp/ you need to specify in your image the namespace so it will be: alexkott/docapp

-- Jakub Bujny
Source: StackOverflow