From 31c00a9f3d3c1eff899cfa00a9cad1e9c07f3e47 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Fri, 1 Jul 2016 21:10:22 -0400 Subject: nova: do not manage nova-compute with pacemaker In the case where all services are installed on the same node (All-In-One), we don't want Pacemaker to manage nova-compute. This patch makes the Nova service more specific for overriding start/stop/restart actions, to be applied only for services that usually run on controllers. Change-Id: I81a86331cff4e7988e035ada82834a45a6bb99c1 --- manifests/profile/pacemaker/nova/consoleauth.pp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'manifests/profile/pacemaker/nova/consoleauth.pp') diff --git a/manifests/profile/pacemaker/nova/consoleauth.pp b/manifests/profile/pacemaker/nova/consoleauth.pp index 54f17b7..fb9428a 100644 --- a/manifests/profile/pacemaker/nova/consoleauth.pp +++ b/manifests/profile/pacemaker/nova/consoleauth.pp @@ -36,6 +36,13 @@ class tripleo::profile::pacemaker::nova::consoleauth ( include ::tripleo::profile::pacemaker::nova include ::tripleo::profile::base::nova::consoleauth + Service<| title == 'nova-consoleauth' |> { + hasrestart => true, + restart => '/bin/true', + start => '/bin/true', + stop => '/bin/true', + } + if $step >= 5 and downcase($::hostname) == $pacemaker_master { pacemaker::resource::service { $::nova::params::consoleauth_service_name: clone_params => 'interleave=true', -- cgit 1.2.3-korg