2016-11-03 14:48:58 +08:00
|
|
|
---
|
2016-12-28 18:04:44 +01:00
|
|
|
- name: Get container facts
|
|
|
|
kolla_container_facts:
|
|
|
|
name:
|
|
|
|
- magnum_api
|
|
|
|
register: container_facts
|
|
|
|
|
|
|
|
- name: Checking free port for Magnum API
|
|
|
|
wait_for:
|
2017-04-18 09:10:44 +02:00
|
|
|
host: "{{ api_interface_address }}"
|
2016-12-28 18:04:44 +01:00
|
|
|
port: "{{ magnum_api_port }}"
|
|
|
|
connect_timeout: 1
|
2017-05-04 08:52:57 +08:00
|
|
|
timeout: 1
|
2016-12-28 18:04:44 +01:00
|
|
|
state: stopped
|
|
|
|
when:
|
|
|
|
- container_facts['magnum_api'] is not defined
|
|
|
|
- inventory_hostname in groups['magnum-api']
|