Bases: Target
Target object for block storage devices.
Base class for target object, where target is data transport mechanism (target) specific calls. This includes things like create targets, attach, detach etc.
Whether 2 connectors belong to the same host or not.
This is used for multi attach volumes, to be able to know when there are no more attachments on a given host.
This is the generic implementation, but specific targets may overwrite it. For example iSCSI would check the the “initiator” key instead, and NVMe-oF would check the “nqn” key.
Creates an export for a logical volume.
Recreates an export for a logical volume.
Reinitializes a target after the LV has been extended.
Note: This will cause IO disruption in most cases.
Initializes the connection and returns connection info.
The iscsi driver returns a driver_volume_type of ‘iscsi’. The format of the driver data is defined in _get_iscsi_properties. Example return value:
{
'driver_volume_type': 'iscsi'
'data': {
'target_discovered': True,
'target_iqn': 'iqn.2010-10.org.openstack:volume-00000001',
'target_portal': '127.0.0.0.1:3260',
'volume_id': '9a0d35d0-175a-11e4-8c21-0800200c9a66',
'discard': False,
}
}
Removes an export for a Target/Volume.
Disallow connection from connector.
Bases: ISCSITarget
iSCSI target for san devices.
San devices are slightly different, they don’t need to implement all of the same things that we need to implement locally fro LVM and local block devices when we create and manage our own targets.
Creates an export for a logical volume.
Recreates an export for a logical volume.
Removes an export for a Target/Volume.
Disallow connection from connector.
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.