kolla-ansible/ansible/roles/murano/tasks/precheck.yml
caoyuan eeac3134b3 Move murano precheck into its own role
Change-Id: I3a2b6869a7742c5bf91c3dc20523784aca0eb521
Partially-implements: blueprint condition-pre-check
2017-01-11 23:54:42 +08:00

17 lines
447 B
YAML

---
- name: Get container facts
kolla_container_facts:
name:
- murano_api
register: container_facts
- name: Checking free port for Murano API
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ murano_api_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['murano_api'] is not defined
- inventory_hostname in groups['murano-api']