kolla-ansible/ansible/roles/cloudkitty/tasks/precheck.yml
caoyuan c7dd8309f3 Move cloudkitty precheck into its own role
Change-Id: Ic9bc03de9636a357cc414897976cb91db44ad02b
Partially-implements: blueprint condition-pre-check
2016-12-23 11:09:12 +08:00

17 lines
467 B
YAML

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