Move mongodb precheck into its own role

Change-Id: I0c545d98eaf00642f82d575ceef8e0a2733090c2
Partially-implements: blueprint condition-pre-check
This commit is contained in:
caoyuan 2017-01-02 22:14:52 +08:00
parent 3af19ebab8
commit a88fc50a62
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'] }}"