Dumb question, but if you see following error on pod: ``` Failed to pull image . . .

Anand:
dumb question, but if you see following error on pod:

Failed to pull image "busybox888": rpc error: code = Unknown desc = Error response from daemon: pull access denied for busybox888, repository does not exist or may require 'docker login': denied: requested access to the resource is denied

how do you distinguish whether its due to “image unavailable” OR its due to “permission issue”?

Tej_Singh_Rana:
Hello, @Anand
It’s available in the public repository so you won’t get permission issue.

Looks like the image is not available on dockerhub.
Jagadishs-MacBook-Air:~ Jags$ docker pull busybox888
Using default tag: latest
Error response from daemon: pull access denied for busybox888, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied
Jagadishs-MacBook-Air:~ Jags$ docker login
Authenticating with existing credentials…
Login Succeeded
Jagadishs-MacBook-Air:~ Jags$ docker pull busybox888
Using default tag: latest
Error response from daemon: pull access denied for busybox888, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied
Jagadishs-MacBook-Air:~ Jags$