> For the complete documentation index, see [llms.txt](https://k8s.huweihuang.com/project/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://k8s.huweihuang.com/project/trouble-shooting/pvc-terminating.md).

# PVC Terminating

## 问题描述

```
pvc terminating
```

pvc在删除时，卡在terminating中。

## 解决方法

```bash
kubectl patch pvc {PVC_NAME} -p '{"metadata":{"finalizers":null}}'
```
