Primary Storage stuck at PrepareForMaintenance
Ideally I would need to take a deeper look at the logs and/or db before making recommendations.
The following DB update should put the storage back in the desired state:
---
update storage_pool set status='Up' where id=<storage_pool_id>; //if you wanted to set it to Up
or
update storage_pool set status='Removed' where id=<storage_pool_id>; //if you wanted to mark it as removed
---
But note, without knowing exactly why this operation is stuck/failing and fixing that, we'd potentially end up in a similar situation.





