Kubernetes Debugging Cheat Sheet/Describe a deployment

Inspect replica counts, rollout conditions, and selector details.

Section: Pods and Workloads

Describe a deployment

bash
bash
kubectl describe deployment <name> -n <namespace>

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Pods and Workloads
Describe a pod
Read conditions, events, mounts, image pulls, and restarts.
OpenIn sheetbashsame section
Check rollout status
Wait for or inspect deployment rollout progress.
OpenIn sheetbashsame section
List pods across all namespaces
Find failing pods anywhere in the cluster.
OpenIn sheetbashsame section
List pods with node and IP
Show placement and pod IP information.
OpenIn sheetbashsame section
Get full pod YAML
Inspect raw spec and status fields.
OpenIn sheetbashsame section
List deployments
Find workloads with rollout or availability issues.
OpenIn sheetbashsame section