diff options
author | Tim Rozet <trozet@redhat.com> | 2016-09-03 14:52:22 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2016-09-03 14:52:22 -0400 |
commit | 28f239b761c4b1bbe3d96c9eb2801e93db14dc7d (patch) | |
tree | ef6d004f7f72aaff7cb4a3a7583a09be2cfa29d2 /lib | |
parent | 956705a78761602d2b6b9223736b243ed5acd517 (diff) |
Disables Congress HA due to congress bugs
JIRA: APEX-257
Change-Id: I21913a6e41a2fd1565b1950345d15d0b5d47cb9c
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/post-install-functions.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/post-install-functions.sh b/lib/post-install-functions.sh index 6e9859a8..a23e0877 100755 --- a/lib/post-install-functions.sh +++ b/lib/post-install-functions.sh @@ -209,5 +209,7 @@ if [[ "$ha_enabled" == 'True' ]]; then echo "${blue}\nChecking pacemaker service status\n${reset}" fi overcloud_connect "controller0" "for i in \$(sudo pcs status | grep '^* ' | cut -d ' ' -f 2 | cut -d '_' -f 1 | uniq); do echo \"WARNING: Service: \$i not running\"; done" + # trozet disable congress in HA until congress bugs are fixed + overcloud_connect "controller0" "sudo pcs resource ban openstack-congress overcloud-controller-1; sudo pcs resource ban openstack-congress overcloud-controller-2; sudo systemctl restart openstack-congress" fi } |