
Currently we hard-code default values of XtremIO driver parameters but these default values are same as the service defaults. This change replaces hard-coded defaults by service defaults. This allows us to avoid maintaining own default values in puppet modules, and reduces amount of maintenance effort. Change-Id: I3d085b2b8441153c356062bd22ac2521950bff35
117 lines
4.1 KiB
Puppet
117 lines
4.1 KiB
Puppet
# == define: cinder::backend::dellemc_xtremio
|
|
#
|
|
# Configure the Dell EMC XtremIO Driver for cinder.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*san_ip*]
|
|
# (required) IP address of XMS.
|
|
#
|
|
# [*san_login*]
|
|
# (required) XMS user name.
|
|
#
|
|
# [*san_password*]
|
|
# (required) XMS user password.
|
|
#
|
|
# [*xtremio_cluster_name*]
|
|
# (required) XMS cluster id in multi-cluster environment.
|
|
#
|
|
# [*volume_backend_name*]
|
|
# (optional) The storage backend name.
|
|
# Defaults to the name of the backend
|
|
#
|
|
# [*backend_availability_zone*]
|
|
# (Optional) Availability zone for this volume backend.
|
|
# If not set, the storage_availability_zone option value
|
|
# is used as the default for all backends.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*xtremio_array_busy_retry_count*]
|
|
# (optional) Number of retries in case array is busy.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*xtremio_array_busy_retry_interval*]
|
|
# (optional) Interval between retries in case array is busy.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*xtremio_volumes_per_glance_cache*]
|
|
# (optional) Number of volumes created from each cached glance image.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*xtremio_ports*]
|
|
# (optional) Allowed ports. Comma separated list of XtremIO iSCSI IPs or
|
|
# FC WWNs (ex. 58:cc:f0:98:49:22:07:02) to be used. If is not set all ports
|
|
# are allowed.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*extra_options*]
|
|
# (optional) Hash of extra options to pass to the backend stanza.
|
|
# Defaults to: {}
|
|
# Example:
|
|
# { 'dellemc_xtremio_backend/param1' => { 'value' => value1 } }
|
|
#
|
|
# [*manage_volume_type*]
|
|
# (Optional) Whether or not manage Cinder Volume type.
|
|
# If set to true, a Cinder Volume type will be created
|
|
# with volume_backend_name=$volume_backend_name key/value.
|
|
# Defaults to false.
|
|
#
|
|
# [*xtremio_storage_protocol*]
|
|
# (optional) The Storage protocol, iSCSI or FC.
|
|
# This will determine
|
|
# which Volume Driver will be configured; XtremIOISCSIDriver or XtremIOFCDriver.
|
|
# Defaults to 'iSCSI'
|
|
#
|
|
define cinder::backend::dellemc_xtremio (
|
|
$san_ip,
|
|
$san_login,
|
|
$san_password,
|
|
$xtremio_cluster_name,
|
|
$volume_backend_name = $name,
|
|
$backend_availability_zone = $::os_service_default,
|
|
$xtremio_array_busy_retry_count = $::os_service_default,
|
|
$xtremio_array_busy_retry_interval = $::os_service_default,
|
|
$xtremio_volumes_per_glance_cache = $::os_service_default,
|
|
$manage_volume_type = false,
|
|
$xtremio_storage_protocol = 'iSCSI',
|
|
$xtremio_ports = $::os_service_default,
|
|
$extra_options = {},
|
|
) {
|
|
|
|
include cinder::deps
|
|
|
|
if $xtremio_storage_protocol == 'iSCSI' {
|
|
$driver = 'dell_emc.xtremio.XtremIOISCSIDriver'
|
|
}
|
|
elsif $xtremio_storage_protocol == 'FC' {
|
|
$driver = 'dell_emc.xtremio.XtremIOFCDriver'
|
|
}
|
|
else {
|
|
fail('The cinder::backend::dellemc_xtremio xtremio_storage_protocol specified is not valid. It should be iSCSI or FC')
|
|
}
|
|
|
|
cinder_config {
|
|
"${name}/volume_backend_name": value => $volume_backend_name;
|
|
"${name}/backend_availability_zone": value => $backend_availability_zone;
|
|
"${name}/volume_driver": value => "cinder.volume.drivers.${driver}";
|
|
"${name}/san_ip": value => $san_ip;
|
|
"${name}/san_login": value => $san_login;
|
|
"${name}/san_password": value => $san_password, secret => true;
|
|
"${name}/xtremio_cluster_name": value => $xtremio_cluster_name;
|
|
"${name}/xtremio_array_busy_retry_count": value => $xtremio_array_busy_retry_count;
|
|
"${name}/xtremio_array_busy_retry_interval": value => $xtremio_array_busy_retry_interval;
|
|
"${name}/xtremio_volumes_per_glance_cache": value => $xtremio_volumes_per_glance_cache;
|
|
"${name}/xtremio_ports": value => join(any2array($xtremio_ports), ',');
|
|
}
|
|
|
|
if $manage_volume_type {
|
|
cinder_type { $volume_backend_name:
|
|
ensure => present,
|
|
properties => ["volume_backend_name=${volume_backend_name}"],
|
|
}
|
|
}
|
|
|
|
create_resources('cinder_config', $extra_options)
|
|
|
|
}
|