Volume stuck in Pending state forever after a kubectl delete #2409
Labels
complexity:easy
Something that requires less than a day to fix
topic:storage
Issues related to storage
Component:
operator
What happened:
When trying to delete a volume whose creation was in progress, the volume stay stuck in Pending state forever.
What was expected:
We let the volume creation proceed until the end (be it with an error or a success) and then the deletion happen.
Steps to reproduce
kubectl apply -f volume.yaml && sleep 1 && kubectl delete -f volume.yaml
Resolution proposal:
Do not exit the reconciliation loop too early, in order to let
deployVolume
moving the process forward.The text was updated successfully, but these errors were encountered: