8fdc01f197
Change-Id: I823f1a5e2e529037d0adf7edd6e407faa629e940 Partially-implements: blueprint condition-pre-check
17 lines
457 B
YAML
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']
|