June 25, 2026 | 00:00

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

February 20, 2024 | 00:00

Kubernetes Downward API

Demonstrates using the Kubernetes Downward API to inject resource-derived env vars like GOMAXPROCS without hitting the API server.