blob: 377f3c7b6588580a41f815e34348383c9c047a81 [file] [log] [blame]
Jakub Latusekc586acb2020-10-21 13:36:29 +02001{{/*
Mukul7de56c82018-09-04 08:03:27 +00002# Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Jakub Latusekc586acb2020-10-21 13:36:29 +020015*/}}
Itay Hasside2da86d2017-08-24 12:54:42 +000016xpack.graph.enabled: false
17#Set to false to disable X-Pack graph features.
18xpack.ml.enabled: false
19#Set to false to disable X-Pack machine learning features.
20xpack.monitoring.enabled: false
21#Set to false to disable X-Pack monitoring features.
22xpack.reporting.enabled: false
23#Set to false to disable X-Pack reporting features.
24xpack.security.enabled: false
25#Set to false to disable X-Pack security features.
26xpack.watcher.enabled: false
27#Set to false to disable Watcher.
28# Kibana is served by a back end server. This setting specifies the port to use.
BorislavG5f3b6192018-03-25 18:12:38 +030029server.port: {{.Values.service.externalPort}}
Itay Hasside2da86d2017-08-24 12:54:42 +000030
31# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
32# The default is 'localhost', which usually means remote machines will not be able to connect.
33# To allow connections from remote users, set this parameter to a non-loopback address.
34server.host: "0"
35
36# Enables you to specify a path to mount Kibana at if you are running behind a proxy. This only affects
37# the URLs generated by Kibana, your proxy is expected to remove the basePath value before forwarding requests
38# to Kibana. This setting cannot end in a slash.
39#server.basePath: ""
40
41# The maximum payload size in bytes for incoming server requests.
42#server.maxPayloadBytes: 1048576
43
44# The Kibana server's name. This is used for display purposes.
45server.name: "Kibana"
46
47# The URL of the Elasticsearch instance to use for all your queries.
BorislavG5f3b6192018-03-25 18:12:38 +030048elasticsearch.url: "http://{{.Values.config.elasticsearchServiceName}}.{{.Release.Namespace}}:{{.Values.config.elasticsearchPort}}"
Itay Hasside2da86d2017-08-24 12:54:42 +000049# When this setting's value is true Kibana uses the hostname specified in the server.host
50# setting. When the value of this setting is false, Kibana uses the hostname of the host
51# that connects to this Kibana instance.
52#elasticsearch.preserveHost: true
53
54# Kibana uses an index in Elasticsearch to store saved searches, visualizations and
55# dashboards. Kibana creates a new index if the index doesn't already exist.
56#kibana.index: ".kibana"
57
58# The default application to load.
59#kibana.defaultAppId: "discover"
60
61# If your Elasticsearch is protected with basic authentication, these settings provide
62# the username and password that the Kibana server uses to perform maintenance on the Kibana
63# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
64# is proxied through the Kibana server.
65elasticsearch.username: "elastic"
66elasticsearch.password: "changeme"
67# Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
68# These settings enable SSL for outgoing requests from the Kibana server to the browser.
69#server.ssl.enabled: $server_ssl_enabled
70#server.ssl.certificate: $server_ssl_certificate
71#server.ssl.key: $server_ssl_key
72
73# Optional settings that provide the paths to the PEM-format SSL certificate and key files.
74# These files validate that your Elasticsearch backend uses the same key files.
75#elasticsearch.ssl.certificate: $elasticsearch_ssl_certificate
76#elasticsearch.ssl.key: $elasticsearch_ssl_key
77
78# Optional setting that enables you to specify a path to the PEM file for the certificate
79# authority for your Elasticsearch instance.
80#elasticsearch.ssl.certificateAuthorities: $elasticsearch_ssl_certificateAuthorities
81
82# To disregard the validity of SSL certificates, change this setting's value to 'none'.
83#elasticsearch.ssl.verificationMode: $elasticsearch_ssl_verificationMode
84
85# Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
86# the elasticsearch.requestTimeout setting.
87#elasticsearch.pingTimeout: 1500
88
89# Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
90# must be a positive integer.
91#elasticsearch.requestTimeout: 30000
92
93# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
94# headers, set this value to [] (an empty list).
95#elasticsearch.requestHeadersWhitelist: [ authorization ]
96
97# Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
98# by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
99#elasticsearch.customHeaders: {}
100
101# Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
102#elasticsearch.shardTimeout: 0
103
104# Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
105#elasticsearch.startupTimeout: 5000
106
107# Specifies the path where Kibana creates the process ID file.
108#pid.file: /var/run/kibana.pid
109
110# Enables you specify a file where Kibana stores log output.
111#logging.dest: stdout
112
113# Set the value of this setting to true to suppress all logging output.
114#logging.silent: false
115
116# Set the value of this setting to true to suppress all logging output other than error messages.
117#logging.quiet: false
118
119# Set the value of this setting to true to log all events, including system usage information
120# and all requests.
121#logging.verbose: false
122
123# Set the interval in milliseconds to sample system and process performance
124# metrics. Minimum is 100ms. Defaults to 5000.
125#ops.interval: 5000
126
127# The default locale. This locale can be used in certain circumstances to substitute any missing
128# translations.
129#i18n.defaultLocale: "en"