@37821879 This usually happens because something is preventing a resource from being deleted, causing pvc deletion to be stuck. maybe other pod still using
PVC is probably still attached to node in cluster, check with:
kubectl get volumeattachment
Forcing a Deletion
kubectl patch pvc {PVC_NAME} -p '{"metadata":{"finalizers":null}}'
please mark as answer if it worked with you