[bitnami/kibana] Do not add server.basePath unless specified (#3260)

This commit is contained in:
Javier J. Salmerón-García
2020-07-29 12:31:10 +02:00
committed by GitHub
parent 8ed39db739
commit fcf47417c0
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: kibana
version: 5.3.4
version: 5.3.5
appVersion: 7.8.0
description: Kibana is an open source, browser based analytics and search dashboard for Elasticsearch.
keywords:
+2
View File
@@ -10,7 +10,9 @@ data:
server.host: "::"
server.port: 5601
elasticsearch.hosts: [{{ include "kibana.elasticsearch.url" . }}]
{{- if .Values.configuration.server.basePath }}
server.basePath: {{ .Values.configuration.server.basePath | quote }}
{{- end }}
server.rewriteBasePath: {{ .Values.configuration.server.rewriteBasePath }}
{{- if .Values.extraConfiguration }}
{{- tpl (toYaml .Values.extraConfiguration) $ | nindent 4 }}