kolla-ansible/ansible/roles/sahara/tasks/precheck.yml
caoyuan 1c246219be Move sahara precheck into its own role
Change-Id: I58d86ffb8001f54a3748fcd7fbabfeb5b873102c
Partially-implements: blueprint condition-pre-check
2017-01-02 21:23:34 +08:00

17 lines
447 B
YAML

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