June 25, 2026
Kubernetes Conditions
Many Kubernetes resources show conditions in their status. You can quickly view them with kubectl describe.
$ kubectl describe pod/nginx ... Conditions: Type Status PodReadyToStartContainers True Initialized True Ready True ContainersReady True PodScheduled True ... Conditions appear as a list. Each condition type represents a separate observation about the resource, not a step in one shared state machine. You generally cannot summarize a resource by assuming all conditions should be True; some condition types use False as the healthy value.
Read more