blob: b7a8fbf34850e20ffa8bc59684aaa0252601eb74 [file] [log] [blame]
Jakub Latusekfcf67842020-10-21 13:36:29 +02001{{/*
osgn422wb561a592020-02-11 15:50:21 +01002# Copyright © 2020 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
Mukul379e2522018-09-05 12:26:02 +00003#
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
osgn422wb561a592020-02-11 15:50:21 +010014# limitations under the License.# Default Kibana configuration from kibana-docker.
Jakub Latusekfcf67842020-10-21 13:36:29 +020015*/}}
osgn422wb561a592020-02-11 15:50:21 +010016
17server.name: "Clamp CL Dashboard"
18server.host: "0"
ac25508ac97172018-04-18 14:23:17 +020019# Kibana is served by a back end server. This setting specifies the port to use.
20server.port: {{.Values.service.externalPort}}
21
osgn422w10e3a8b2019-05-23 14:19:39 +020022server.ssl.enabled: {{.Values.config.sslEnabled}}
osgn422w79814452020-09-25 02:28:02 +020023{{- if .Values.global.aafEnabled }}
24server.ssl.certificate: {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.clamp_pem }}
25server.ssl.key: {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.clamp_key }}
26{{ else }}
osgn422w10e3a8b2019-05-23 14:19:39 +020027server.ssl.certificate: {{.Values.config.sslPemCertFilePath}}
28server.ssl.key: {{.Values.config.sslPemkeyFilePath}}
osgn422w79814452020-09-25 02:28:02 +020029{{- end }}
osgn422wb561a592020-02-11 15:50:21 +010030# The URL of the Elasticsearch instance to use for all your queries.
31elasticsearch.hosts: ${elasticsearch_base_url}
ac25508ac97172018-04-18 14:23:17 +020032
osgn422wb561a592020-02-11 15:50:21 +010033elasticsearch.ssl.verificationMode: none
osgn422w6e663e42019-08-02 11:31:11 +020034elasticsearch.username: {{.Values.config.elasticUSR}}
35elasticsearch.password: {{.Values.config.elasticPWD}}
36
osgn422wb561a592020-02-11 15:50:21 +010037elasticsearch.requestHeadersWhitelist: ["securitytenant","Authorization"]
38
39opendistro_security.multitenancy.enabled: true
40opendistro_security.multitenancy.tenants.preferred: ["Private", "Global"]
Jakub Latusekfcf67842020-10-21 13:36:29 +020041opendistro_security.readonly_mode.roles: ["kibana_read_only"]