Currently if a backend type parameter has not been specified in the upstream module one needs to rely on a custom layer to enable them. With this options even if not yet specified on the upstream module, user can specify extra options for each backends. Change-Id: I0387c86ff3e04a1d1c6b686f76d9c7c88c30a356
64 lines
2.0 KiB
Puppet
64 lines
2.0 KiB
Puppet
# == Class: cinder::volume::rbd
|
|
#
|
|
# Setup Cinder to use the RBD driver.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*rbd_pool*]
|
|
# (required) Specifies the pool name for the block device driver.
|
|
#
|
|
# [*rbd_user*]
|
|
# (required) A required parameter to configure OS init scripts and cephx.
|
|
#
|
|
# [*rbd_ceph_conf*]
|
|
# (optional) Path to the ceph configuration file to use
|
|
# Defaults to '/etc/ceph/ceph.conf'
|
|
#
|
|
# [*rbd_flatten_volume_from_snapshot*]
|
|
# (optional) Enable flatten volumes created from snapshots.
|
|
# Defaults to false
|
|
#
|
|
# [*rbd_secret_uuid*]
|
|
# (optional) A required parameter to use cephx.
|
|
# Defaults to false
|
|
#
|
|
# [*volume_tmp_dir*]
|
|
# (optional) Location to store temporary image files if the volume
|
|
# driver does not write them directly to the volume
|
|
# Defaults to false
|
|
#
|
|
# [*rbd_max_clone_depth*]
|
|
# (optional) Maximum number of nested clones that can be taken of a
|
|
# volume before enforcing a flatten prior to next clone.
|
|
# A value of zero disables cloning
|
|
# Defaults to '5'
|
|
#
|
|
# [*extra_options*]
|
|
# (optional) Hash of extra options to pass to the backend stanza
|
|
# Defaults to: {}
|
|
# Example :
|
|
# { 'rbd_backend/param1' => { 'value' => value1 } }
|
|
#
|
|
class cinder::volume::rbd (
|
|
$rbd_pool,
|
|
$rbd_user,
|
|
$rbd_ceph_conf = '/etc/ceph/ceph.conf',
|
|
$rbd_flatten_volume_from_snapshot = false,
|
|
$rbd_secret_uuid = false,
|
|
$volume_tmp_dir = false,
|
|
$rbd_max_clone_depth = '5',
|
|
$extra_options = {},
|
|
) {
|
|
|
|
cinder::backend::rbd { 'DEFAULT':
|
|
rbd_pool => $rbd_pool,
|
|
rbd_user => $rbd_user,
|
|
rbd_ceph_conf => $rbd_ceph_conf,
|
|
rbd_flatten_volume_from_snapshot => $rbd_flatten_volume_from_snapshot,
|
|
rbd_secret_uuid => $rbd_secret_uuid,
|
|
volume_tmp_dir => $volume_tmp_dir,
|
|
rbd_max_clone_depth => $rbd_max_clone_depth,
|
|
extra_options => $extra_options,
|
|
}
|
|
}
|