Move mongodb precheck into its own role
Change-Id: I0c545d98eaf00642f82d575ceef8e0a2733090c2 Partially-implements: blueprint condition-pre-check
This commit is contained in:
parent
3af19ebab8
commit
a88fc50a62
@ -234,6 +234,17 @@
|
|||||||
- "{{ 'mistral_api' not in haproxy_stat }}"
|
- "{{ 'mistral_api' not in haproxy_stat }}"
|
||||||
- inventory_hostname in groups['haproxy']
|
- 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
|
- name: Checking free port for Murano API HAProxy
|
||||||
wait_for:
|
wait_for:
|
||||||
host: "{{ kolla_internal_vip_address }}"
|
host: "{{ kolla_internal_vip_address }}"
|
||||||
|
@ -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']
|
||||||
|
@ -93,36 +93,6 @@
|
|||||||
- enable_iscsid | bool
|
- enable_iscsid | bool
|
||||||
- inventory_hostname in groups['tgtd']
|
- 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
|
- name: Checking free port for Rsync
|
||||||
wait_for:
|
wait_for:
|
||||||
host: "{{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}"
|
host: "{{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user