infrastructure
Kubernetes Errors
Kubernetes pod statuses: ImagePullBackOff, CrashLoopBackOff, ErrImagePull, OOMKilled, CreateContainerConfigError, RunContainerError. Most issues trace to image pull, resource limits, or config maps/secrets.
K8s pod failures cluster around image (ImagePullBackOff, ErrImagePull), runtime (CrashLoopBackOff, RunContainerError), resources (OOMKilled, Evicted), and config (CreateContainerConfigError, InvalidImageName). `kubectl describe pod` and `kubectl logs --previous` are your first two commands. ImagePullBackOff = registry auth, missing tag, or typo.
Runtime (1)
Configuration (1)
Official docs
https://kubernetes.io/docs/tasks/debug/debug-application/
Support
https://kubernetes.io/community/