Merge "Fix kibana deployment with openstack_cacert unset"

This commit is contained in:
Zuul 2020-04-20 16:19:04 +00:00 committed by Gerrit Code Review
commit 95471c47cc
2 changed files with 8 additions and 0 deletions

View File

@ -6,4 +6,6 @@ elasticsearch.url: "{{ internal_protocol }}://{{ kolla_internal_fqdn | put_addre
elasticsearch.requestTimeout: {{ kibana_elasticsearch_request_timeout }}
elasticsearch.shardTimeout: {{ kibana_elasticsearch_shard_timeout }}
elasticsearch.ssl.verificationMode: "{{ 'full' if kibana_elasticsearch_ssl_verify | bool else 'none' }}"
{% if openstack_cacert | length > 0 %}
elasticsearch.ssl.certificateAuthorities: {{ openstack_cacert }}
{% endif %}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with Kibana deployment when ``openstack_cacert`` is unset.
See `bug 1864180 <https://bugs.launchpad.net/kolla-ansible/+bug/1864180>`_
for details.