Potential K8s ImagePullBackOff Issue

The issue might occur when k8s is trying to pull image other than using local images, but couldn’t pull the image correctly. This is due to when the Image of the container doesn’t have a specific tag, imagePullPolicy might be set to Always. See Official Docs: Default image pull policy Omit the imagePullPolicy and the tag for the image to use; Kubernetes will set the policy to Always when you submit the Pod....

January 10, 2023 · Vokey