File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 1.5.1
18+ version : 1.5.2
1919
2020maintainers :
2121 - name : Dominic DePasquale
Original file line number Diff line number Diff line change @@ -47,10 +47,16 @@ spec:
4747 image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
4848 imagePullPolicy : {{ .Values.image.pullPolicy }}
4949 {{- if .Values.initContainer.args }}
50- args : {{ .Values.initContainer.args }}
50+ args :
51+ {{- range .Values.initContainer.args }}
52+ - {{ . }}
53+ {{- end }}
5154 {{- end }}
5255 {{- if .Values.initContainer.command }}
53- command : {{ .Values.initContainer.command }}
56+ command :
57+ {{- range .Values.initContainer.command }}
58+ - {{ . }}
59+ {{- end }}
5460 {{- end }}
5561 {{- if or .Values.externalSecret.enabled .Values.configMap.enabled }}
5662 envFrom :
You can’t perform that action at this time.
0 commit comments