kolla-ansible/ansible/roles/barbican/tasks/precheck.yml
caoyuan 8fdc01f197 Move barbican precheck into its own role
Change-Id: I823f1a5e2e529037d0adf7edd6e407faa629e940
Partially-implements: blueprint condition-pre-check
2016-12-23 22:47:55 +08:00

17 lines
457 B
YAML

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