File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.1.0
18
+ version : 0.1.1
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 26
26
{{- end }}
27
27
run : {{ .Release.Name }}
28
28
spec :
29
+ initContainers :
30
+ {{- range $initContainer := .Values.initContainers }}
31
+ - {{- toYaml $initContainer | nindent 10 }}
32
+ {{- end }}
33
+ {{- end }}
29
34
containers :
30
35
- name : metabase
31
36
image : " {{ .Values.metabase.image.repository }}:{{ .Values.metabase.image.tag }}"
@@ -135,8 +140,9 @@ spec:
135
140
name : {{ (printf "%s-secret" (include "metabase.fullname" .)) }}
136
141
key : " newRelicLicenseKey"
137
142
{{- end }}
138
- {{- if .Values.log4jProperties }}
139
143
volumeMounts :
144
+ {{- toYaml .Values.metabase.volumeMounts | nindent 12 }}
145
+ {{- if .Values.log4jProperties }}
140
146
- name : config
141
147
mountPath : /tmp/conf/
142
148
{{- end}}
@@ -161,6 +167,10 @@ spec:
161
167
{{ toYaml . | indent 8 }}
162
168
{{- end }}
163
169
volumes :
170
+ {{- range $volume := .Values.volumes }}
171
+ - {{- toYaml $volume | nindent 10 }}
172
+ {{- engit push origin --delete <old_name>d }}
173
+ {{- if .Values.telegraf.enabled }}
164
174
- name : telegraf-volume
165
175
configMap :
166
176
name : {{ template "metabase.fullname" . }}-telegraf-config
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ labels: {}
4
4
# # String to fully override metabase.fullname template
5
5
# #
6
6
# fullnameOverride:
7
+ initContainers : {}
8
+ volumes : {}
7
9
8
10
metabase :
9
11
image :
@@ -39,6 +41,11 @@ metabase:
39
41
# requests:
40
42
# cpu: 100m
41
43
# memory: 128Mi
44
+
45
+ # volumeMounts:
46
+ # - mountPath: /data/config.yaml
47
+ # name: config
48
+ # subPath: config.yaml
42
49
43
50
# Backend database
44
51
database :
You can’t perform that action at this time.
0 commit comments