2016-11-03 14:48:58 +08:00
|
|
|
---
|
2016-12-28 23:15:24 +08:00
|
|
|
- name: Get container facts
|
|
|
|
kolla_container_facts:
|
|
|
|
name:
|
|
|
|
- senlin_api
|
|
|
|
register: container_facts
|
|
|
|
|
|
|
|
- name: Checking free port for Senlin API
|
|
|
|
wait_for:
|
|
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
|
|
port: "{{ senlin_api_port }}"
|
|
|
|
connect_timeout: 1
|
|
|
|
state: stopped
|
|
|
|
when:
|
|
|
|
- container_facts['senlin_api'] is not defined
|
|
|
|
- inventory_hostname in groups['senlin-api']
|