a9fffcb0df
Manila commit 401c8d982e8b6a95f01784cf647a7ac16513d61a moved the share helpers into a separate module and changed the name of the CIFSHelper. This change set updates the defaults used by puppet to match the new helper module names. Change-Id: I66b73858512ee5aed416aae840946f26c4cdc223
104 lines
4.1 KiB
Puppet
104 lines
4.1 KiB
Puppet
# == Class: manila::share::generic
|
|
#
|
|
# Configures Manila to use the generic share driver
|
|
#
|
|
# ===Parameters
|
|
# [*driver_handles_share_servers*]
|
|
# (required) Denotes whether the driver should handle the responsibility of
|
|
# managing share servers. This must be set to false if the driver is to
|
|
# operate without managing share servers.
|
|
#
|
|
# [*smb_template_config_path*]
|
|
# (optional) Path to smb config.
|
|
# Defaults to: $state_path/smb.conf
|
|
#
|
|
# [*volume_name_template*]
|
|
# (optional) Volume name template.
|
|
# Defaults to: manila-share-%s
|
|
#
|
|
# [*volume_snapshot_name_template*]
|
|
# (optional) Volume snapshot name template.
|
|
# Defaults to: manila-snapshot-%s
|
|
#
|
|
# [*share_mount_path*]
|
|
# (optional) Parent path in service instance where shares will be mounted.
|
|
# Defaults to: /shares
|
|
#
|
|
# [*max_time_to_create_volume*]
|
|
# (optional) Maximum time to wait for creating cinder volume.
|
|
# Defaults to: 180
|
|
#
|
|
# [*max_time_to_attach*]
|
|
# (optional) Maximum time to wait for attaching cinder volume.
|
|
# Defaults to: 120
|
|
#
|
|
# [*service_instance_smb_config_path*]
|
|
# (optional) Path to smb config in service instance.
|
|
# Defaults to: $share_mount_path/smb.conf
|
|
#
|
|
# [*share_volume_fstype*]
|
|
# (optional) Filesystem type of the share volume.
|
|
# Choices: 'ext4', 'ext3'
|
|
# Defaults to: ext4
|
|
#
|
|
# [*share_helpers*]
|
|
# (optional) Specify list of share export helpers.
|
|
# Defaults to: ['CIFS=manila.share.drivers.helpers.CIFSHelperIPAccess',
|
|
# 'NFS=manila.share.drivers.helpers.NFSHelper']
|
|
#
|
|
# [*cinder_volume_type*]
|
|
# (optional) Name or id of cinder volume type which will be used for all
|
|
# volumes created by driver.
|
|
#
|
|
# [*delete_share_server_with_last_share*]
|
|
# (optional) With this option is set to True share server willbe deleted
|
|
# on deletion of last share.
|
|
# Defaults to: False
|
|
#
|
|
# [*unmanage_remove_access_rules*]
|
|
# (optional) If set to True, then manila will deny access and remove all
|
|
# access rules on share unmanage. If set to False - nothing will be changed.
|
|
# Defaults to: False
|
|
#
|
|
# [*automatic_share_server_cleanup*]
|
|
# (optional) If set to True, then Manila will delete all share servers which
|
|
# were unused more than specified time. If set to False, automatic deletion
|
|
# of share servers will be disabled.
|
|
# Defaults to: True
|
|
|
|
class manila::share::generic (
|
|
$driver_handles_share_servers,
|
|
$smb_template_config_path = '$state_path/smb.conf',
|
|
$volume_name_template = 'manila-share-%s',
|
|
$volume_snapshot_name_template = 'manila-snapshot-%s',
|
|
$share_mount_path = '/shares',
|
|
$max_time_to_create_volume = 180,
|
|
$max_time_to_attach = 120,
|
|
$service_instance_smb_config_path = '$share_mount_path/smb.conf',
|
|
$share_volume_fstype = 'ext4',
|
|
$share_helpers = ['CIFS=manila.share.drivers.helpers.CIFSHelperIPAccess',
|
|
'NFS=manila.share.drivers.helpers.NFSHelper'],
|
|
$cinder_volume_type = undef,
|
|
$delete_share_server_with_last_share = 'False',
|
|
$unmanage_remove_access_rules = 'False',
|
|
$automatic_share_server_cleanup = 'True',
|
|
) {
|
|
|
|
manila::backend::generic { 'DEFAULT':
|
|
driver_handles_share_servers => $driver_handles_share_servers,
|
|
smb_template_config_path => $smb_template_config_path,
|
|
volume_name_template => $volume_name_template,
|
|
volume_snapshot_name_template => $volume_snapshot_name_template,
|
|
share_mount_path => $share_mount_path,
|
|
max_time_to_create_volume => $max_time_to_create_volume,
|
|
max_time_to_attach => $max_time_to_attach,
|
|
service_instance_smb_config_path => $service_instance_smb_config_path,
|
|
share_helpers => $share_helpers,
|
|
share_volume_fstype => $share_volume_fstype,
|
|
cinder_volume_type => $cinder_volume_type,
|
|
delete_share_server_with_last_share => $delete_share_server_with_last_share,
|
|
unmanage_remove_access_rules => $unmanage_remove_access_rules,
|
|
automatic_share_server_cleanup => $automatic_share_server_cleanup,
|
|
}
|
|
}
|