kolla-ansible/ansible/roles/tacker/tasks/precheck.yml
caoyuan 5b1c6a47aa Move tacker precheck into its own role
Change-Id: I63f5247a01683cff416847c1856a24997bf8605c
Partially-implements: blueprint condition-pre-check
2017-01-06 10:47:03 +08:00

17 lines
441 B
YAML

---
- name: Get container facts
kolla_container_facts:
name:
- tacker
register: container_facts
- name: Checking free port for Tacker Server
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ tacker_server_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['tacker'] is not defined
- inventory_hostname in groups['tacker']