c7dd8309f3
Change-Id: Ic9bc03de9636a357cc414897976cb91db44ad02b Partially-implements: blueprint condition-pre-check
17 lines
467 B
YAML
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']
|