X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fcinder%2Fmanifests%2Fvolume%2Feqlx.pp;fp=3rdparty%2Fmodules%2Fcinder%2Fmanifests%2Fvolume%2Feqlx.pp;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=6c89ec6bd0be96a9372be242402d591a86e26dd7;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/cinder/manifests/volume/eqlx.pp b/3rdparty/modules/cinder/manifests/volume/eqlx.pp deleted file mode 100644 index 6c89ec6bd..000000000 --- a/3rdparty/modules/cinder/manifests/volume/eqlx.pp +++ /dev/null @@ -1,74 +0,0 @@ -# == define: cinder::volume::eqlx -# -# Configure the Dell EqualLogic driver for cinder. -# -# === Parameters -# -# [*san_ip*] -# (required) The IP address of the Dell EqualLogic array. -# -# [*san_login*] -# (required) The account to use for issuing SSH commands. -# -# [*san_password*] -# (required) The password for the specified SSH account. -# -# [*san_thin_provision*] -# (optional) Whether or not to use thin provisioning for volumes. -# Defaults to true -# -# [*eqlx_group_name*] -# (optional) The CLI prompt message without '>'. -# Defaults to 'group-0' -# -# [*eqlx_pool*] -# (optional) The pool in which volumes will be created. -# Defaults to 'default' -# -# [*eqlx_use_chap*] -# (optional) Use CHAP authentification for targets? -# Defaults to false -# -# [*eqlx_chap_login*] -# (optional) An existing CHAP account name. -# Defaults to 'chapadmin' -# -# [*eqlx_chap_password*] -# (optional) The password for the specified CHAP account name. -# Defaults to '12345' -# -# [*eqlx_cli_timeout*] -# (optional) The timeout for the Group Manager cli command execution. -# Defaults to 30 seconds -# -# [*eqlx_cli_max_retries*] -# (optional) The maximum retry count for reconnection. -# Defaults to 5 -# -class cinder::volume::eqlx ( - $san_ip, - $san_login, - $san_password, - $san_thin_provision = true, - $eqlx_group_name = 'group-0', - $eqlx_pool = 'default', - $eqlx_use_chap = false, - $eqlx_chap_login = 'chapadmin', - $eqlx_chap_password = '12345', - $eqlx_cli_timeout = 30, - $eqlx_cli_max_retries = 5, -) { - cinder::backend::eqlx { 'DEFAULT': - san_ip => $san_ip, - san_login => $san_login, - san_password => $san_password, - san_thin_provision => $san_thin_provision, - eqlx_group_name => $eqlx_group_name, - eqlx_pool => $eqlx_pool, - eqlx_use_chap => $eqlx_use_chap, - eqlx_chap_login => $eqlx_chap_login, - eqlx_chap_password => $eqlx_chap_password, - eqlx_cli_timeout => $eqlx_cli_timeout, - eqlx_cli_max_retries => $eqlx_cli_max_retries, - } -}