02d9de8636
Change-Id: Ic2ad2b38d7e1c988f9dca9dc0d377cfee7b89504 Partially-implements: blueprint condition-pre-check
17 lines
446 B
YAML
17 lines
446 B
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- grafana
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Grafana server
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ grafana_server_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['grafana'] is not defined
|
|
- inventory_hostname in groups['grafana']
|