diff options
author | Michele Baldessari <michele@acksyn.org> | 2016-07-15 12:14:52 +0200 |
---|---|---|
committer | Michele Baldessari <michele@acksyn.org> | 2016-07-15 14:07:54 +0200 |
commit | 507e3c696fbe69e806422b2c462857bdd0da6836 (patch) | |
tree | 0f928dbdca7adb2f928988d12807808bfa681614 /manifests/profile/base | |
parent | 4f0582ea40b6d1d2330bfd7683ab40852ed09403 (diff) |
openstack-core resource does not have interleave=true
The dummy openstack-core resource was meant to replace keystone so that
restarting keystone would not restart the whole cloud. When this
resource was introduced the paramter interleave=true was mistakenly left
out.
This causes a simple promote operation on the galera resource to restart
openstack-core and its children.
Change-Id: Ic590005a9419be87e6e6ea131b0ac0630c5afc19
Closes-Bug: 1603381
Diffstat (limited to 'manifests/profile/base')
-rw-r--r-- | manifests/profile/base/pacemaker.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/profile/base/pacemaker.pp b/manifests/profile/base/pacemaker.pp index fc58891..de107a9 100644 --- a/manifests/profile/base/pacemaker.pp +++ b/manifests/profile/base/pacemaker.pp @@ -85,7 +85,7 @@ class tripleo::profile::base::pacemaker ( # Create an openstack-core dummy resource. See RHBZ 1290121 pacemaker::resource::ocf { 'openstack-core': ocf_agent_name => 'heartbeat:Dummy', - clone_params => true, + clone_params => 'interleave=true', } } } |