901d63f5a5
Change-Id: I0ae528e614aec65d4fee3044fff7036717a50376 Partially-implements: blueprint condition-pre-check
17 lines
424 B
YAML
17 lines
424 B
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- kuryr
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Kuryr
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ kuryr_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['kuryr'] is not defined
|
|
- inventory_hostname in groups['compute']
|