> For the complete documentation index, see [llms.txt](https://til.duyet.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.duyet.net/data-engineering/kubernetes/pvc-stuck-in-status-terminating.md).

# K8S: PVC stuck in status “Terminating”

You need to patch the PVC to set the “finalizers” setting to null, this allows the final unmount from the node, and the PVC can be deleted.

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

References:&#x20;

* [https://github.com/kubernetes/kubernetes/issues/69697](https://github.com/kubernetes/kubernetes/issues/69697#issuecomment-439635888)
* <https://veducate.co.uk/kubernetes-pvc-terminating/>
