diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-06-21 16:46:20 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-06-21 16:46:20 +0000 |
commit | 144c5f56f4204342ade82d46ebabab6398642bf3 (patch) | |
tree | c0b119ec28b639e6fe413299ab98d4eb6f123913 /manifests/profile/pacemaker/ceilometer/agent/notification.pp | |
parent | cffed9af2357770d09b68f6d4a53ccd5f45e560c (diff) | |
parent | cfb077da78a93bf7112748976920d24d03002263 (diff) |
Merge "Add ceilometer profiles"
Diffstat (limited to 'manifests/profile/pacemaker/ceilometer/agent/notification.pp')
-rw-r--r-- | manifests/profile/pacemaker/ceilometer/agent/notification.pp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/manifests/profile/pacemaker/ceilometer/agent/notification.pp b/manifests/profile/pacemaker/ceilometer/agent/notification.pp new file mode 100644 index 0000000..868bb22 --- /dev/null +++ b/manifests/profile/pacemaker/ceilometer/agent/notification.pp @@ -0,0 +1,45 @@ +# Copyright 2016 Red Hat, Inc. +# +# 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: tripleo::profile::pacemaker::ceilometer::agent::notification +# +# Ceilometer Notification Agent Pacemaker HA profile for tripleo +# +# === Parameters +# +# [*pacemaker_master*] +# (Optional) The hostname of the node responsible for bootstrapping tasks +# Defaults to hiera('bootstrap_nodeid') +# +# [*step*] +# (Optional) The current step in deployment. See tripleo-heat-templates +# for more details. +# Defaults to hiera('step') +# +class tripleo::profile::pacemaker::ceilometer::agent::notification ( + $pacemaker_master = hiera('bootstrap_nodeid'), + $step = hiera('step'), +) { + + include ::ceilometer::params + include ::tripleo::profile::pacemaker::ceilometer + include ::tripleo::profile::base::ceilometer::agent::notification + + if $step >= 5 and downcase($::hostname) == $pacemaker_master { + pacemaker::resource::service { $::ceilometer::params::agent_notification_service_name : + clone_params => 'interleave=true', + } + } + +} |