WIP Upgrades: wait for galera to be settled

We also need to wait for the galera resource to settle down
before we proceed starting up with the other services.

Note that before merging this, we need to land the following
change in ansible-pacemaker:
https://review.gerrithub.io/#/c/351387/

WIP HACK TO DEBUG https://bugs.launchpad.net/tripleo/+bug/1673030
Depends-On: I242a893c17e831ffb27f55757d9640cba05624c1

Change-Id: Id71c9cb41cfd4c17685c922db2683e28ab7588fd
Closes-Bug: #1668372
(cherry picked from commit 841d30549b)
This commit is contained in:
Michele Baldessari 2017-02-28 13:25:59 +01:00
parent cb55a9c282
commit a5c15ba7b2
1 changed files with 4 additions and 2 deletions

View File

@ -90,7 +90,7 @@ parameters:
PacemakerResources:
type: comma_delimited_list
description: List of resources managed by pacemaker
default: ['rabbitmq','haproxy']
default: ['rabbitmq','haproxy','galera']
outputs:
role_data:
@ -143,5 +143,7 @@ outputs:
pacemaker_cluster: state=online
- name: Check pacemaker resource
tags: step4
pacemaker_resource: state=started resource={{item}} check_mode=true wait_for_resource=true timeout=500
pacemaker_is_active:
resource: "{{ item }}"
max_wait: 500
with_items: {get_param: PacemakerResources}