This change replaces ElasticSearch with OpenSearch, and Kibana with OpenSearch Dashboards. It migrates the data from ElasticSearch to OpenSearch upon upgrade. No TLS support is in this patch (will be a followup). A replacement for ElasticSearch Curator will be added as a followup. Depends-On: https://review.opendev.org/c/openstack/kolla/+/830373 Co-authored-by: Doug Szumski <doug@stackhpc.com> Co-authored-by: Kyle Dean <kyle@stackhpc.com> Change-Id: Iab10ce7ea5d5f21a40b1f99b28e3290b7e9ce895
13 lines
719 B
Django/Jinja
13 lines
719 B
Django/Jinja
opensearchDashboards.defaultAppId: "{{ opensearch_dashboards_default_app_id }}"
|
|
logging.dest: /var/log/kolla/opensearch/opensearch-dashboards.log
|
|
server.port: {{ opensearch_dashboards_port }}
|
|
server.host: "{{ api_interface_address }}"
|
|
opensearch.hosts: "{{ opensearch_internal_endpoint }}"
|
|
opensearch.requestTimeout: {{ opensearch_dashboards_opensearch_request_timeout }}
|
|
opensearch.shardTimeout: {{ opensearch_dashboards_opensearch_shard_timeout }}
|
|
opensearch.ssl.verificationMode: "{{ 'full' if opensearch_dashboards_opensearch_ssl_verify | bool else 'none' }}"
|
|
data.search.usageTelemetry.enabled: false
|
|
{% if openstack_cacert | length > 0 %}
|
|
opensearch.ssl.certificateAuthorities: {{ openstack_cacert }}
|
|
{% endif %}
|