3eb7ec6053
refer to https://review.openstack.org/#/c/399354/ Change-Id: If33e4ad7358136b88965679a9877e87487f812ea Partially-implements: blueprint condition-pre-check
17 lines
467 B
YAML
17 lines
467 B
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- ceilometer_api
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Ceilometer API
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ ceilometer_api_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['ceilometer_api'] is not defined
|
|
- inventory_hostname in groups['ceilometer-api']
|