The cinder.volume.targets.iser Module

class ISERTgtAdm(*args, **kwargs)

Bases: cinder.volume.targets.tgt.TgtAdm

VERSION = '0.2'
initialize_connection(volume, connector)

Initializes the connection and returns connection info. The iser driver returns a driver_volume_type of ‘iser’. The format of the driver data is defined in _get_iscsi_properties. Example return value:

{
    'driver_volume_type': 'iser'
    'data': {
        'target_discovered': True,
        'target_iqn':
        'iqn.2010-10.org.openstack:volume-00000001',
        'target_portal': '127.0.0.0.1:3260',
        'volume_id': 1,
    }
}

Previous topic

The cinder.volume.targets.iscsi Module

Next topic

The cinder.volume.targets.lio Module

This Page