mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/kibana] Add env variables evaluation as templates (#14905)
* [stable/kibana] Add env variables evaluation as templates Signed-off-by: Nikolai Iurin <yurinnick93@gmail.com> * [stable/kibana] Bump version Signed-off-by: Nikolai Iurin <yurinnick93@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
e085a2d272
commit
65a71f9ef9
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: kibana
|
||||
version: 3.1.1
|
||||
version: 3.2.0
|
||||
appVersion: 6.7.0
|
||||
description: Kibana is an open source data visualization plugin for Elasticsearch
|
||||
icon: https://raw.githubusercontent.com/elastic/kibana/master/src/ui/public/icons/kibana-color.svg
|
||||
|
||||
@@ -36,7 +36,7 @@ spec:
|
||||
initContainers:
|
||||
{{- if .Values.initContainers }}
|
||||
{{- range $key, $value := .Values.initContainers }}
|
||||
- name: "{{ $key }}"
|
||||
- name: {{ $key | quote }}
|
||||
{{ toYaml $value | indent 8 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
@@ -53,8 +53,8 @@ spec:
|
||||
{{- end }}
|
||||
env:
|
||||
{{- range $key, $value := .Values.env }}
|
||||
- name: "{{ $key }}"
|
||||
value: "{{ $value }}"
|
||||
- name: {{ $key | quote }}
|
||||
value: {{ tpl $value | quote }}"
|
||||
{{- end }}
|
||||
volumeMounts:
|
||||
- name: {{ template "kibana.fullname" . }}-dashboards
|
||||
@@ -108,8 +108,8 @@ spec:
|
||||
done
|
||||
env:
|
||||
{{- range $key, $value := .Values.env }}
|
||||
- name: "{{ $key }}"
|
||||
value: "{{ $value }}"
|
||||
- name: {{ $key | quote }}
|
||||
value: {{ tpl $value | quote }}"
|
||||
{{- end }}
|
||||
volumeMounts:
|
||||
- name: plugins
|
||||
@@ -137,8 +137,8 @@ spec:
|
||||
{{- end }}
|
||||
env:
|
||||
{{- range $key, $value := .Values.env }}
|
||||
- name: "{{ $key }}"
|
||||
value: "{{ $value }}"
|
||||
- name: {{ $key | quote }}
|
||||
value: {{ tpl $value | quote }}"
|
||||
{{- end }}
|
||||
{{- if .Values.envFromSecrets }}
|
||||
{{- range $key,$value := .Values.envFromSecrets }}
|
||||
|
||||
Reference in New Issue
Block a user