a88fc50a62
Change-Id: I0c545d98eaf00642f82d575ceef8e0a2733090c2 Partially-implements: blueprint condition-pre-check
27 lines
761 B
YAML
27 lines
761 B
YAML
---
|
|
- 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']
|