1e1be4fb56
Change-Id: Ib509c510e3e5ed19fbb1b5f68a060cde02d82eab
83 lines
2.2 KiB
Puppet
83 lines
2.2 KiB
Puppet
# == Class: cinder::volume
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) The state of the package.
|
|
# Defaults to 'present'.
|
|
#
|
|
# [*enabled*]
|
|
# (Optional) The state of the service (boolean value)
|
|
# Defaults to true.
|
|
#
|
|
# [*manage_service*]
|
|
# (Optional) Whether to start/stop the service (boolean value)
|
|
# Defaults to true.
|
|
#
|
|
# [*cluster*]
|
|
# (Optional) Cluster name when running in active/active mode.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*volume_clear*]
|
|
# (Optional) Method used to wipe old volumes.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*volume_clear_size*]
|
|
# (Optional) Size in MiB to wipe at start of old volumes.
|
|
# Set to '0' means all.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*volume_clear_ionice*]
|
|
# (Optional) The flag to pass to ionice to alter the i/o priority
|
|
# of the process used to zero a volume after deletion,
|
|
# for example "-c3" for idle only priority.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
class cinder::volume (
|
|
$package_ensure = 'present',
|
|
$enabled = true,
|
|
$manage_service = true,
|
|
$cluster = $::os_service_default,
|
|
$volume_clear = $::os_service_default,
|
|
$volume_clear_size = $::os_service_default,
|
|
$volume_clear_ionice = $::os_service_default,
|
|
) {
|
|
|
|
include cinder::deps
|
|
include cinder::params
|
|
|
|
validate_legacy(Boolean, 'validate_bool', $manage_service)
|
|
validate_legacy(Boolean, 'validate_bool', $enabled)
|
|
|
|
if $::cinder::params::volume_package {
|
|
package { 'cinder-volume':
|
|
ensure => $package_ensure,
|
|
name => $::cinder::params::volume_package,
|
|
tag => ['openstack', 'cinder-package'],
|
|
}
|
|
}
|
|
|
|
if $manage_service {
|
|
if $enabled {
|
|
$ensure = 'running'
|
|
} else {
|
|
$ensure = 'stopped'
|
|
}
|
|
}
|
|
|
|
service { 'cinder-volume':
|
|
ensure => $ensure,
|
|
name => $::cinder::params::volume_service,
|
|
enable => $enabled,
|
|
hasstatus => true,
|
|
tag => 'cinder-service',
|
|
}
|
|
|
|
cinder_config {
|
|
'DEFAULT/cluster': value => $cluster;
|
|
'DEFAULT/volume_clear': value => $volume_clear;
|
|
'DEFAULT/volume_clear_size': value => $volume_clear_size;
|
|
'DEFAULT/volume_clear_ionice': value => $volume_clear_ionice;
|
|
}
|
|
}
|