8b37073444
Change-Id: Ic878a76787052e9baf9d710d5d174e2b10b9fd10 Partially-implements: blueprint condition-pre-check
17 lines
442 B
YAML
17 lines
442 B
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- trove_api
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Trove API
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ trove_api_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['trove_api'] is not defined
|
|
- inventory_hostname in groups['trove-api']
|