puppet-manila/manifests/backend/hitachi_hnas.pp
silvacarloss a0610b687e Add ability to configure backend availability zones
Add new "backend_availability_zone" parameter to every share
backend. The parameters are optional, and when set they override the
DEFAULT/storage_availability_zone for the corresponding backend.

Change-Id: Ie7af8408fe8cec9349593fd9b4cb5bc7deb565cd
2021-09-24 22:37:25 +09:00

96 lines
3.4 KiB
Puppet

# == define: manila::backend::hitachi_hnas
#
# Configures Manila to use the HITACHI NAS Platform share driver
# Compatible for multiple backends
#
# === Parameters
#
# [*driver_handles_share_servers*]
# (required) Denotes whether the driver should handle the responsibility of
# managing share servers. This must be set to false.
#
# [*hitachi_hnas_username*]
# (required) Denotes the username credential used to manage HNAS through
# management interface.
#
# [*hitachi_hnas_password*]
# (required) Denotes the password credential used to manage HNAS through
# management interface.
#
# [*hitachi_hnas_ip*]
# (required) Denotes the IP address used to access HNAS through management
# interface.
#
# [*hitachi_hnas_evs_id*]
# (required) Denotes the identification number of the HNAS EVS data interface
#
# [*hitachi_hnas_evs_ip*]
# (required) Denotes the IP address of the HNAS EVS data interface
#
# [*hitachi_hnas_file_system_name*]
# (required) Denotes the hnas filesystem name used for volume provisioning
#
# [*share_backend_name*]
# (optional) Name of the backend in manila.conf that
# these settings will reside in
#
# [*backend_availability_zone*]
# (Optional) Availability zone for this share backend.
# If not set, the storage_availability_zone option value
# is used as the default for all backends.
# Defaults to $::os_service_default.
#
# [*package_ensure*]
# (optional) Ensure state for package. Defaults to 'present'.
#
# === Examples
#
# manila::backend::hitachi_hnas { 'HITACHI1':
# driver_handles_share_servers => false,
# hitachi_hnas_username => 'supervisor',
# hitachi_hnas_password => 'supervisor',
# hitachi_hnas_ip => '172.24.44.15',
# hitachi_hnas_evs_id => '1',
# hitachi_hnas_evs_ip => '10.0.1.20',
# hitachi_hnas_file_system_name => 'FS-Manila',
# }
define manila::backend::hitachi_hnas (
$hitachi_hnas_username,
$hitachi_hnas_password,
$hitachi_hnas_ip,
$hitachi_hnas_evs_id,
$hitachi_hnas_evs_ip,
$hitachi_hnas_file_system_name,
$driver_handles_share_servers = false,
$share_backend_name = $name,
$backend_availability_zone = $::os_service_default,
$package_ensure = 'present',
) {
include manila::deps
include manila::params
validate_legacy(String, 'validate_string', $hitachi_hnas_password)
$hitachi_share_driver = 'manila.share.drivers.hitachi.hds_hnas.HDSHNASDriver'
manila_config {
"${share_backend_name}/share_driver": value => $hitachi_share_driver;
"${share_backend_name}/driver_handles_share_servers": value => $driver_handles_share_servers;
"${share_backend_name}/backend_availability_zone": value => $backend_availability_zone;
"${share_backend_name}/hitachi_hnas_username": value => $hitachi_hnas_username;
"${share_backend_name}/hitachi_hnas_password": value => $hitachi_hnas_password, secret => true;
"${share_backend_name}/hitachi_hnas_ip": value => $hitachi_hnas_ip;
"${share_backend_name}/hitachi_hnas_evs_id": value => $hitachi_hnas_evs_id;
"${share_backend_name}/hitachi_hnas_evs_ip": value => $hitachi_hnas_evs_ip;
"${share_backend_name}/hitachi_hnas_file_system_name": value => $hitachi_hnas_file_system_name;
}
ensure_packages('nfs-client', {
name => $::manila::params::nfs_client_package_name,
ensure => $package_ensure,
tag => 'manila-support-package',
})
}