This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: I0d18ec6ffe6b54c85773a6dabb0ed7b6f59a12f4
130 lines
4.1 KiB
Puppet
130 lines
4.1 KiB
Puppet
#
|
|
# Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
|
|
#
|
|
# Author: Emilien Macchi <emilien.macchi@enovance.com>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# == Class: ceilometer::agent::notification
|
|
#
|
|
# Configure the ceilometer notification agent.
|
|
# This configures the plugin for the API server, but does nothing
|
|
# about configuring the agents that must also run and share a config
|
|
# file with the OVS plugin if both are on the same machine.
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*enabled*]
|
|
# (Optional) Should the service be enabled.
|
|
# Defaults to true.
|
|
#
|
|
# [*manage_service*]
|
|
# (Optional) Whether the service should be managed by Puppet.
|
|
# Defaults to true.
|
|
#
|
|
# [*ack_on_event_error*]
|
|
# (Optional) Acknowledge message when event persistence fails.
|
|
# Defaults to true.
|
|
#
|
|
# [*store_events*]
|
|
# (Optional) Save event details.
|
|
# Defaults to false.
|
|
#
|
|
# [*disable_non_metric_meters*]
|
|
# (Optional) Disable or enable the collection of non-metric meters.
|
|
# Default to $::os_service_default.
|
|
#
|
|
# [*notification_workers*]
|
|
# (Optional) Number of workers for notification service (integer value).
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*messaging_urls*]
|
|
# (Optional) Messaging urls to listen for notifications. (Array of urls)
|
|
# The format should be transport://user:pass@host1:port[,hostN:portN]/virtual_host
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) ensure state for package.
|
|
# Defaults to 'present'.
|
|
#
|
|
# [*manage_event_pipeline*]
|
|
# (Optional) Whether to manage event_pipeline.yaml
|
|
# Defaults to false
|
|
#
|
|
# [*event_pipeline_publishers*]
|
|
# (Optional) A list of publishers to put in event_pipeline.yaml
|
|
# Add 'notifier://?topic=alarm.all' to the list if you are using Aodh
|
|
# for alarms.
|
|
# Defaults to ['notifier://'],
|
|
#
|
|
class ceilometer::agent::notification (
|
|
$manage_service = true,
|
|
$enabled = true,
|
|
$ack_on_event_error = true,
|
|
$store_events = false,
|
|
$disable_non_metric_meters = $::os_service_default,
|
|
$notification_workers = $::os_service_default,
|
|
$messaging_urls = $::os_service_default,
|
|
$package_ensure = 'present',
|
|
$manage_event_pipeline = false,
|
|
$event_pipeline_publishers = ['notifier://'],
|
|
) {
|
|
|
|
include ::ceilometer::deps
|
|
include ::ceilometer::params
|
|
|
|
ensure_resource('package', [$::ceilometer::params::agent_notification_package_name],
|
|
{
|
|
ensure => $package_ensure,
|
|
tag => ['openstack', 'ceilometer-package']
|
|
}
|
|
)
|
|
|
|
if $manage_service {
|
|
if $enabled {
|
|
$service_ensure = 'running'
|
|
} else {
|
|
$service_ensure = 'stopped'
|
|
}
|
|
}
|
|
|
|
service { 'ceilometer-agent-notification':
|
|
ensure => $service_ensure,
|
|
name => $::ceilometer::params::agent_notification_service_name,
|
|
enable => $enabled,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
tag => 'ceilometer-service'
|
|
}
|
|
|
|
if ($manage_event_pipeline) {
|
|
validate_array($event_pipeline_publishers)
|
|
|
|
file { 'event_pipeline':
|
|
ensure => present,
|
|
path => $::ceilometer::params::event_pipeline,
|
|
content => template('ceilometer/event_pipeline.yaml.erb'),
|
|
selinux_ignore_defaults => true,
|
|
tag => 'event-pipeline',
|
|
}
|
|
}
|
|
|
|
ceilometer_config {
|
|
'notification/ack_on_event_error' : value => $ack_on_event_error;
|
|
'notification/store_events' : value => $store_events;
|
|
'notification/disable_non_metric_meters': value => $disable_non_metric_meters;
|
|
'notification/workers' : value => $notification_workers;
|
|
'notification/messaging_urls' : value => $messaging_urls;
|
|
}
|
|
}
|