2d8d6e72ea
Co-Authored-By: caoyuan <cao.yuan@99cloud.net> Change-Id: I38aa833febe7bf06bffb9c5e8ad6b7a79074fb50 Partially-implements: blueprint condition-pre-check
17 lines
445 B
YAML
17 lines
445 B
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- kibana
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Kibana Server
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}"
|
|
port: "{{ kibana_server_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['kibana'] is not defined
|
|
- inventory_hostname in groups['kibana']
|