Kubernetes Pod Debugging Cheat Sheet/List PersistentVolumeClaims

Check if pod scheduling is blocked on volume binding.

Section: Pending and Unschedulable Pods

List PersistentVolumeClaims

bash
bash
kubectl get pvc -A

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 Pending and Unschedulable Pods
Describe a PVC
Inspect storage class, events, and binding failures.
OpenIn sheetbashsame section
List Pending pods
Find pods stuck before startup.
OpenIn sheetbashsame section
Describe a Pending pod
Look for FailedScheduling, taints, or PVC issues.
OpenIn sheetbashsame section
Inspect node taints
Check whether tolerations are missing.
OpenIn sheetbashsame section
View pod node selectors and affinity
Inspect scheduling constraints from raw YAML.
OpenIn sheetbashsame section
Find CrashLoopBackOff pods
List pods that are restarting and failing to stay up.