[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / clamp / components / clamp-dash-kibana / resources / config / kibana.yml
1 # Copyright © 2020  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.# Default Kibana configuration from kibana-docker.
14
15 server.name: "Clamp CL Dashboard"
16 server.host: "0"
17 # Kibana is served by a back end server. This setting specifies the port to use.
18 server.port: {{.Values.service.externalPort}}
19
20 server.ssl.enabled: {{.Values.config.sslEnabled}}
21 {{- if .Values.global.aafEnabled }}
22 server.ssl.certificate: {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.clamp_pem }}
23 server.ssl.key: {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.clamp_key }}
24 {{ else }}
25 server.ssl.certificate: {{.Values.config.sslPemCertFilePath}}
26 server.ssl.key: {{.Values.config.sslPemkeyFilePath}}
27 {{- end }}
28 # The URL of the Elasticsearch instance to use for all your queries.
29 elasticsearch.hosts: ${elasticsearch_base_url}
30
31 elasticsearch.ssl.verificationMode: none
32 elasticsearch.username: {{.Values.config.elasticUSR}}
33 elasticsearch.password: {{.Values.config.elasticPWD}}
34
35 elasticsearch.requestHeadersWhitelist: ["securitytenant","Authorization"]
36
37 opendistro_security.multitenancy.enabled: true
38 opendistro_security.multitenancy.tenants.preferred: ["Private", "Global"]
39 opendistro_security.readonly_mode.roles: ["kibana_read_only"]