Volume driver for Dell EqualLogic Storage.
Bases: cinder.volume.drivers.san.san.SanISCSIDriver
Implements commands for Dell EqualLogic SAN ISCSI management.
a separate volume group set up and running on the SAN
SSH access to the SAN
The access credentials to the SAN are provided by means of the following flags
san_ip=<ip_address> san_login=<user name> san_password=<user password> san_private_key=<file containing SSH private key>
In order to use target CHAP authentication (which is disabled by default) SAN administrator must create a local CHAP user and specify the following flags for the driver:
use_chap_auth=True chap_login=<chap_login> chap_password=<chap_password>
eqlx_group_name parameter actually represents the CLI prompt message without ‘>’ ending. E.g. if prompt looks like ‘group-0>’, then the parameter must be set to ‘group-0’
Add multihost-access to a volume. Needed for live migration.
Creates a clone of the specified volume.
Create an export of a volume.
Driver has nothing to do here for the volume has been exported already by the SAN, right after it’s creation.
Create snapshot of existing volume on appliance.
Create a volume.
Create new volume from other volume’s snapshot on appliance.
Delete volume’s snapshot.
Delete a volume.
Disable cli confirmation and tune output format.
Ensure an export of a volume.
Driver has nothing to do here for the volume has been exported already by the SAN, right after it’s creation. We will just make sure that the volume exists on the array and issue a warning.
Extend the size of the volume.
Restrict access to a volume.
Remove an export of a volume.
Driver has nothing to do here for the volume has been exported already by the SAN, right after it’s creation. Nothing to remove since there’s nothing exported.
Remove access restrictions from a volume.