I have a simple k8s installation with few nodes and ceph (kubernetes.io/rbd) as storageclass. I have a deployment with a single pod which uses a persistent volume from the persistent volume claim (ReadWriteOnce) from this storage class.
A node with this pod have failed (NotReady in get nodes
output for a long time and it's physically dead).
K8s could not create a new pod for my deploy because of 'Multi-Attach error for volume "pvc-..." Volume is already exclusively attached to one node and can't be attached to another'.
I see that pv is bounded to the failed node: "Status: Bound".
How can I force kubernetes to forget about old pod to allow a new pod to bound to the persistent volume?