In our OpenStack cloud there are a server with server_id
and a volume with <volume_id>
. We are in a situation where there is a volume that appears to be attached from the perspective of Nova, but not from the perspective of Cinder. There is a record in the nova database for this attachment: MariaDB [(none)]> select * from block_device_mapping where instance_uuid = "<volume_id>"
, shows the entry.
Nova shows the attachment:
openstack server show <server_id>
+-------------------------------------+----------------------------------------------------------+
| Field | Value |
+-------------------------------------+---------------------------------------------------------
| volumes_attached | id='...' |
| | id='<volume_id' |
+-------------------------------------+----------------------------------------------------------+
Cinder, does not know about this attachment:
openstack volume show <volume_id>
+--------------------------------+--------------------------------------+
| Field | Value |
+--------------------------------+--------------------------------------+
| attachments | [] |
From within the VM, the volume seems connected and can be operated on.
I tried setting the volume to an available
and detached
state, but it is not possible to attach it in any state that I have tried.
It also tried removing the attachment completely. When running openstack server remove volume
or nova volume-detach
the command finishes without an error and the cinder logging shows: Roll detaching of volume completed successfully.
However, the situation does not change.
What would be the best way to recover from this situation? For this specific VM, I think I could remove the database entry from block_device_mapping
and rebuild the VM? For the future I would like to know if it is also possible to repair the situation in OpenStack to reflect the situation in the real world. That means, is there any way in which I can add the attachment, so that it is also visible in Cinder?