Volume is already exclusively attached to one node and can't be attached to another Volume is already exclusively attached to one node and can't be attached to another kubernetes kubernetes

Volume is already exclusively attached to one node and can't be attached to another


Looks like you have a dangling PVC and/or PV that is attached to one of your nodes. You can ssh into the node and run a df or mount to check.

If you look at this the PVCs in a StatefulSet are always mapped to their pod names, so it may be possible that you still have a dangling pod(?)

If you have a dangling pod:

$ kubectl -n test delete pod <pod-name>

You may have to force it:

$ kubectl -n test delete pod <pod-name> --grace-period=0 --force

Then, you can try deleting the PVC and it's corresponding PV:

$ kubectl delete pvc pvc-faedc8$ kubectl delete pv <pv-name>