Kubernetes Workloads Cheat Sheet/Wait for deployment availability

Block until a deployment is available.

Section: Advanced Pod and Controller Operations

Wait for deployment availability

bash
bash
kubectl wait --for=condition=Available deployment/web -n payments --timeout=180s
Explanation

Block until a deployment is available.

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 Advanced Pod and Controller Operations
Wait for pods to become ready
Wait on readiness conditions.
OpenIn sheetbashsame section
Patch scale subresource
Update the scale subresource directly.
OpenIn sheetbashsame section
Get pods with owner references
Show which controller owns each pod.
OpenIn sheetbashsame section
Drain node
Safely evict workloads before maintenance.
OpenIn sheetbashsame section
Uncordon node
Allow new pods to schedule on a node again.
OpenIn sheetbashsame section
Cordon node
Mark a node unschedulable.
OpenIn sheetbashsame section