1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#
# == Define: manila::ganesha
#
# Set NFS Ganesha options for share drivers
#
# === Parameters
#
# [*share_backend_name*]
# (optional) Name of the backend in manila.conf that
# these settings will reside in
# Defaults to: $name
#
# [*ganesha_config_dir*]
# (optional) Directory where Ganesha config files are stored.
# Defaults to $facts['os_service_default']
#
# [*ganesha_config_path*]
# (optional) Path to main Ganesha config file.
# Defaults to $facts['os_service_default']
#
# [*ganesha_service_name*]
# (optional) Name of the ganesha nfs service.
# Defaults to $facts['os_service_default']
#
# [*ganesha_db_path*]
# (optional) Location of Ganesha database file (Ganesha module only).
# Defaults to $facts['os_service_default']
#
# [*ganesha_export_dir*]
# (optional) Path to directory containing Ganesha export configuration.
# (Ganesha module only.)
# Defaults to $facts['os_service_default']
#
# [*ganesha_export_template_dir*]
# (optional) Path to directory containing Ganesha export block templates.
# (Ganesha module only.)
# Defaults to $facts['os_service_default']
#
# [*ganesha_rados_store_enable*]
# (optional) Persist Ganesha exports and export counter in Ceph RADOS objects
# Defaults to $facts['os_service_default']
#
# [*ganesha_rados_store_pool_name*]
# (optional) Name of the Ceph RADOS pool to store Ganesha exports and export
# counter.
# Defaults to $facts['os_service_default']
#
# [*ganesha_rados_export_counter*]
# (optional) Name of the CEPH RADOS object used as the Ganesha export counter.
# Defaults to $facts['os_service_default']
#
# [*ganesha_rados_export_index*]
# (optional) Name of the CEPH RADOS object used to store a list of the export
# RADOS object URLs.
# Defaults to $facts['os_service_default']
#
define manila::backend::ganesha (
$share_backend_name = $name,
$ganesha_config_dir = $facts['os_service_default'],
$ganesha_config_path = $facts['os_service_default'],
$ganesha_service_name = $facts['os_service_default'],
$ganesha_db_path = $facts['os_service_default'],
$ganesha_export_dir = $facts['os_service_default'],
$ganesha_export_template_dir = $facts['os_service_default'],
$ganesha_rados_store_enable = $facts['os_service_default'],
$ganesha_rados_store_pool_name = $facts['os_service_default'],
$ganesha_rados_export_counter = $facts['os_service_default'],
$ganesha_rados_export_index = $facts['os_service_default'],
) {
include manila::deps
manila_config {
"${share_backend_name}/ganesha_config_dir": value => $ganesha_config_dir;
"${share_backend_name}/ganesha_config_path": value => $ganesha_config_path;
"${share_backend_name}/ganesha_service_name": value => $ganesha_service_name;
"${share_backend_name}/ganesha_db_path": value => $ganesha_db_path;
"${share_backend_name}/ganesha_export_dir": value => $ganesha_export_dir;
"${share_backend_name}/ganesha_export_template_dir": value => $ganesha_export_template_dir;
"${share_backend_name}/ganesha_rados_store_enable": value => $ganesha_rados_store_enable;
"${share_backend_name}/ganesha_rados_store_pool_name": value => $ganesha_rados_store_pool_name;
"${share_backend_name}/ganesha_rados_export_counter": value => $ganesha_rados_export_counter;
"${share_backend_name}/ganesha_rados_export_index": value => $ganesha_rados_export_index;
}
ensure_packages( 'nfs-ganesha', {
ensure => present,
tag => ['openstack', 'manila-support-package'],
})
}
|