Skip to content
Snippets Groups Projects
Commit a88fc50a authored by caoyuan's avatar caoyuan
Browse files

Move mongodb precheck into its own role

Change-Id: I0c545d98eaf00642f82d575ceef8e0a2733090c2
Partially-implements: blueprint condition-pre-check
parent 3af19eba
No related branches found
No related tags found
No related merge requests found
...@@ -234,6 +234,17 @@ ...@@ -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 }}"
......
--- ---
- 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 @@ ...@@ -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'] }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment