b1f015616c
wait_for module waits 300 seconds for the port started or stopped. This is meaningless and useless in precheck. This patch change timeout to 1 seconds. Change-Id: I9b251ec4ba17ce446655917e8ef5e152ef947298 Closes-Bug: #1688152
18 lines
402 B
YAML
18 lines
402 B
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- kibana
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Kibana Server
|
|
wait_for:
|
|
host: "{{ api_interface_address }}"
|
|
port: "{{ kibana_server_port }}"
|
|
connect_timeout: 1
|
|
timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['kibana'] is not defined
|
|
- inventory_hostname in groups['kibana']
|