Skip to content
Snippets Groups Projects
Commit 12ac15b5 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Use FQDN to communicate with Kibana and Elasticsearch"

parents 5c193cbe f165b81e
No related branches found
No related tags found
No related merge requests found
---
- name: Set fact for Elasticsearch URL
set_fact:
elasticsearch_url: "{{ internal_protocol }}://{{ kolla_internal_vip_address | put_address_in_context('url') }}:{{ elasticsearch_port }}"
elasticsearch_url: "{{ internal_protocol }}://{{ kolla_internal_fqdn | put_address_in_context('url') }}:{{ elasticsearch_port }}"
- name: Wait for Elasticsearch
become: true
......
---
- name: Wait for kibana port
wait_for:
host: "{{ kolla_internal_vip_address }}"
host: "{{ kolla_internal_fqdn }}"
port: "{{ kibana_server_port }}"
run_once: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment