From dc9d9893717b819cf65893573199db8b473d284f Mon Sep 17 00:00:00 2001 From: Marius Cornea Date: Thu, 7 Sep 2017 15:38:54 +0200 Subject: One time delete pacemaker resources during upgrade to containers This change allows running the major upgrade composable docker steps multiple times by not trying to delete the pacemaker resources if they're not reported as started or in master state. Closes-bug: 1716031 Depends-On: I8da03f5c4a6d442617b81be5793a9724cc8842bf Change-Id: Ifcf9de8c82550a90a9fb118052d43fdbcdc6ca7e (cherry picked from commit 64d7be1e3d4552e06cbc53f788572e530cc5c3bb) --- docker/services/pacemaker/haproxy.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'docker/services/pacemaker/haproxy.yaml') diff --git a/docker/services/pacemaker/haproxy.yaml b/docker/services/pacemaker/haproxy.yaml index 29bd22af..a325f286 100644 --- a/docker/services/pacemaker/haproxy.yaml +++ b/docker/services/pacemaker/haproxy.yaml @@ -224,6 +224,14 @@ outputs: - name: set is_bootstrap_node fact tags: common set_fact: is_bootstrap_node={{bootstrap_node.stdout|lower == ansible_hostname|lower}} + - name: Check cluster resource status + tags: step2 + pacemaker_resource: + resource: {get_attr: [HAProxyBase, role_data, service_name]} + state: started + check_mode: true + ignore_errors: true + register: haproxy_res - name: Disable the haproxy cluster resource. tags: step2 pacemaker_resource: @@ -233,7 +241,7 @@ outputs: register: output retries: 5 until: output.rc == 0 - when: is_bootstrap_node + when: is_bootstrap_node and haproxy_res|succeeded - name: Delete the stopped haproxy cluster resource. tags: step2 pacemaker_resource: @@ -243,4 +251,4 @@ outputs: register: output retries: 5 until: output.rc == 0 - when: is_bootstrap_node + when: is_bootstrap_node and haproxy_res|succeeded -- cgit 1.2.3-korg