Merge "Move mongodb precheck into its own role"

This commit is contained in:
Jenkins 2017-01-16 17:59:08 +00:00 committed by Gerrit Code Review
commit d4dfacdc2e
3 changed files with 36 additions and 30 deletions

View File

@ -234,6 +234,17 @@
- "{{ 'mistral_api' not in haproxy_stat }}"
- inventory_hostname in groups['haproxy']
- name: Checking free port for Mongodb HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"
port: "{{ mongodb_port }}"
connect_timeout: 1
state: stopped
when:
- enable_mongodb | bool
- "{{ 'mongodb' not in haproxy_stat }}"
- inventory_hostname in groups['haproxy']
- name: Checking free port for Murano API HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"

View File

@ -1 +1,26 @@
---
- name: Get container facts
kolla_container_facts:
name:
- mongodb
register: container_facts
- name: Checking free port for Mongodb
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ mongodb_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['mongodb'] is not defined
- inventory_hostname in groups['mongodb']
- name: Checking free port for Mongodb Web
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ mongodb_web_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['mongodb'] is not defined
- inventory_hostname in groups['mongodb']

View File

@ -93,36 +93,6 @@
- enable_iscsid | bool
- inventory_hostname in groups['tgtd']
- name: Checking free port for Mongodb
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ mongodb_port }}"
connect_timeout: 1
state: stopped
when:
- inventory_hostname in groups['mongodb']
- enable_mongodb | bool
- name: Checking free port for Mongodb Web
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ mongodb_web_port }}"
connect_timeout: 1
state: stopped
when:
- inventory_hostname in groups['mongodb']
- enable_mongodb | bool
- name: Checking free port for Mongodb HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"
port: "{{ mongodb_port }}"
connect_timeout: 1
state: stopped
when:
- inventory_hostname in groups['haproxy']
- enable_mongodb | bool
- name: Checking free port for Rsync
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}"