kibana: do not send cluster statistics to Elastic

With the previous setting of optIn=False, users still get nagged on the
starting page to enable telemetry, let's disable completely instead.

Change-Id: I258006c09edf7e36570f6575db07cce474c2ef8b
This commit is contained in:
Christian Berendt 2021-11-21 15:23:23 +01:00 committed by Dr. Jens Harbott
parent b5282d4ed4
commit fd88098b2e

View File

@ -6,7 +6,7 @@ elasticsearch.hosts: "{{ elasticsearch_internal_endpoint }}"
elasticsearch.requestTimeout: {{ kibana_elasticsearch_request_timeout }}
elasticsearch.shardTimeout: {{ kibana_elasticsearch_shard_timeout }}
elasticsearch.ssl.verificationMode: "{{ 'full' if kibana_elasticsearch_ssl_verify | bool else 'none' }}"
telemetry.optIn: false
telemetry.enabled: false
{% if openstack_cacert | length > 0 %}
elasticsearch.ssl.certificateAuthorities: {{ openstack_cacert }}
{% endif %}