Merge "Fix checking mongodb replication status" into stable/rocky

This commit is contained in:
Zuul 2019-08-16 14:42:32 +00:00 committed by Gerrit Code Review
commit 94dec04b69
1 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,7 @@
notify:
- Waiting for the mongodb startup
- Checking current replication status
- Bootstrap cluster
- name: Waiting for the mongodb startup
wait_for: host={{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }} port={{ mongodb_port }}
@ -36,5 +37,6 @@
delegate_to: "{{ groups['mongodb'][0] }}"
run_once: True
- include_tasks: "bootstrap_cluster.yml"
- name: Bootstrap cluster
include_tasks: "bootstrap_cluster.yml"
when: mongodb_replication_status.stdout != "1"