> For the complete documentation index, see [llms.txt](https://kubernetes.feisky.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kubernetes.feisky.xyz/en/troubleshooting/pv.md).

# PV Troubleshooting

This chapter introduces methods to troubleshoot persistent storage issues – including PV (Persistent Volume), PVC (Persistent Volume Claim), StorageClass, and the like.

Generally speaking, no matter what abnormal state the PV is in, executing the `kubectl describe pv/pvc <pod-name>` command allows you to view the current events of the PV. These events are usually instrumental in diagnosing any issues that may have occurred with the PV or PVC.

```bash
kubectl get pv
kubectl get pvc
kubectl get sc

kubectl describe pv <pv-name>
kubectl describe pvc <pvc-name>
kubectl describe sc <storage-class-name>
```
