fd88098b2e
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
13 lines
628 B
Django/Jinja
13 lines
628 B
Django/Jinja
kibana.defaultAppId: "{{ kibana_default_app_id }}"
|
|
logging.dest: /var/log/kolla/kibana/kibana.log
|
|
server.port: {{ kibana_server_port }}
|
|
server.host: "{{ api_interface_address }}"
|
|
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.enabled: false
|
|
{% if openstack_cacert | length > 0 %}
|
|
elasticsearch.ssl.certificateAuthorities: {{ openstack_cacert }}
|
|
{% endif %}
|