From the course: Debugging Kubernetes

Unlock the full course today

Join today to access over 24,900 courses taught by industry experts.

Solving network-related ImagePullBackOff errors

Solving network-related ImagePullBackOff errors - Kubernetes Tutorial

From the course: Debugging Kubernetes

Solving network-related ImagePullBackOff errors

- [Instructor] One container down, two to go. Let's rerun kubectl describe pods test-app to revisit the status of the containers in our pod. Earlier, we fixed the typo in image container. Now we're going to take a look at unreachable registry container to see how we can debug images that aren't in invalid or unreachable registries. So we can see that this image is pulling from this dockerrrrrrrr.io registry and it's looking for the busy box image in that registry, which is the valid name of a registry, but this stuff over here is not right, but how can we confirm that? We can confirm that by running several network tests to tell us whether this DNS record is a valid record and confirming whether it's a valid registry. We'll look into network and DNS troubleshooting later in this course. Now, it is highly likely that the author of this pod really just wanted to use docker.io. Maybe they had a stuck key in their MacBook or something. So we're going to go ahead and just change that to…

Contents