7b52ec3cac
Currently all packages are defined using ensure_resource but it is redundant because we don't expect these aodh packages are managed outside of puppet-aodh. This replaces usage of ensure_resource by the normal package resource, to make implementations more simple. Change-Id: I0a92669b2f9a41e10a49c7db0865343453045c7b
71 lines
1.7 KiB
Puppet
71 lines
1.7 KiB
Puppet
# Installs the aodh notifier service
|
|
#
|
|
# == Params
|
|
# [*enabled*]
|
|
# (optional) Should the service be enabled.
|
|
# Defaults to true.
|
|
#
|
|
# [*manage_service*]
|
|
# (optional) Whether the service should be managed by Puppet.
|
|
# Defaults to true.
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) ensure state for package.
|
|
# Defaults to 'present'
|
|
#
|
|
# [*workers*]
|
|
# (optional) Number of workers for notifier service.
|
|
# Defaults to $::os_workers.
|
|
#
|
|
# [*batch_size*]
|
|
# (optional) Number of notification messages to wait before dispatching
|
|
# them.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*batch_timeout*]
|
|
# (optional) Number of seconds to wait before dispatching samples when
|
|
# batch_size is not reached.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
class aodh::notifier (
|
|
$manage_service = true,
|
|
$enabled = true,
|
|
$package_ensure = 'present',
|
|
$workers = $::os_workers,
|
|
$batch_size = $::os_service_default,
|
|
$batch_timeout = $::os_service_default,
|
|
) {
|
|
|
|
include aodh::deps
|
|
include aodh::params
|
|
|
|
aodh_config {
|
|
'notifier/workers': value => $workers;
|
|
'notifier/batch_size': value => $batch_size;
|
|
'notifier/batch_timeout': value => $batch_timeout
|
|
}
|
|
|
|
package { 'aodh-notifier':
|
|
ensure => $package_ensure,
|
|
name => $::aodh::params::notifier_package_name,
|
|
tag => ['openstack', 'aodh-package']
|
|
}
|
|
|
|
if $manage_service {
|
|
if $enabled {
|
|
$service_ensure = 'running'
|
|
} else {
|
|
$service_ensure = 'stopped'
|
|
}
|
|
|
|
service { 'aodh-notifier':
|
|
ensure => $service_ensure,
|
|
name => $::aodh::params::notifier_service_name,
|
|
enable => $enabled,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
tag => 'aodh-service',
|
|
}
|
|
}
|
|
}
|