menu
  • Pending: The pod has been accepted by the Kubernetes system but hasn't started running yet. This could mean that Kubernetes is still scheduling the pod to a node, or it’s waiting for resources (like storage or network) to become available.
  • Running: The pod has been successfully scheduled to a node, and at least one of its containers is running.
  • Succeeded: All containers in the pod have completed successfully, and the pod’s restartPolicy is set to Never or OnFailure.
  • Failed: All containers in the pod have terminated, and at least one container exited with a non-zero status, indicating an error.
  • CrashLoopBackOff: A container in the pod is repeatedly failing to start. Kubernetes is trying to restart it, but it continues to fail, resulting in a “crash loop.”