X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fcinder%2Fmanifests%2Fvolume%2Fhp3par_iscsi.pp;fp=3rdparty%2Fmodules%2Fcinder%2Fmanifests%2Fvolume%2Fhp3par_iscsi.pp;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=7f622848edfd6cbf6a51d402568f52d2397a4aa1;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/cinder/manifests/volume/hp3par_iscsi.pp b/3rdparty/modules/cinder/manifests/volume/hp3par_iscsi.pp deleted file mode 100644 index 7f622848e..000000000 --- a/3rdparty/modules/cinder/manifests/volume/hp3par_iscsi.pp +++ /dev/null @@ -1,73 +0,0 @@ -# == Class: cinder::volume::hp3par -# -# Configures Cinder volume HP 3par driver. -# Parameters are particular to each volume driver. -# -# === Parameters -# -# [*volume_driver*] -# (optional) Setup cinder-volume to use HP 3par volume driver. -# Defaults to 'cinder.volume.drivers.san.hp.hp_3par_iscsi.HP3PARISCSIDriver' -# -# [*san_ip*] -# (required) IP address of HP 3par service processor. -# -# [*san_login*] -# (required) Username for HP 3par account. -# -# [*san_password*] -# (required) Password for HP 3par account. -# -# [*hp3par_api_url*] -# (required) url for api access to 3par - expample https://10.x.x.x:8080/api/v1 -# -# [*hp3par_username*] -# (required) Username for HP3par admin user -# -# [*hp3par_password*] -# (required) Password for hp3par_username -# -# [*hp3par_iscsi_ips*] -# (required) iscsi ip addresses for the HP 3par array -# -# [*hp3par_iscsi_chap_enabled*] -# (required) setting to false by default -# -# [*hp3par_snap_cpg*] -# (optional) set to hp3par_cfg by default in the cinder driver -# -# [*hp3par_snapshot_retention*] -# (required) setting to 48 hours as default expiration - ensures snapshot cannot be deleted prior to expiration -# -# [*hp3par_snapshot_expiration*] -# (required) setting to 72 hours as default (must be larger than retention) - -class cinder::volume::hp3par_iscsi( - $hp3par_api_url, - $hp3par_username, - $hp3par_password, - $san_ip, - $san_login, - $san_password, - $volume_driver = 'cinder.volume.drivers.san.hp.hp_3par_iscsi.HP3PARISCSIDriver', - $hp3par_iscsi_ips, - $hp3par_iscsi_chap_enabled = false, - $hp3par_snap_cpg = OpenstackCPG, - $hp3par_snapshot_retention = 48, - $hp3par_snapshot_expiration = 72, -) { - - cinder::backend::hp3par_iscsi { 'DEFAULT': - volume_driver => $volume_driver, - hp3par_username => $hp3par_username, - hp3par_password => $hp3par_password, - san_ip => $san_ip, - san_login => $san_login, - san_password => $san_password, - hp3par_iscsi_ips => $hp3par_iscsi_ips, - hp3par_api_url => $hp3par_api_url, - hp3par_snap_cpg => $hp3par_snap_cpg, - hp3par_snapshot_retention => $hp3par_snapshot_retention, - hp3par_snapshot_expiration => $hp3par_snapshot_expiration, - } -}