Skip to content

Commit 39f4722

Browse files
committed
specify args correctly
1 parent 74f7353 commit 39f4722

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

charts/noncer/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: 0.0.1
18+
version: 0.0.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/noncer/templates/deployment.yaml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,21 @@ spec:
3030
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
3131
imagePullPolicy: {{ .Values.image.pullPolicy }}
3232
args:
33-
- "-user {{ .Values.email.user }}"
34-
- "-host {{ .Values.email.host }}"
35-
- "-port {{ .Values.email.port }}"
36-
- "-pass {{ .Values.email.password }}"
37-
- "-period {{ .Values.bot.period }}"
38-
- "-webhook {{ .Values.bot.webhook }}"
39-
{{- range .Values.bot.allowList }}
40-
- "-allowlist {{ . }}"
33+
- -user
34+
- {{ .Values.email.user | quote }}
35+
- -host
36+
- {{ .Values.email.host | quote }}
37+
- -port
38+
- {{ .Values.email.port }}
39+
- -pass
40+
- {{ .Values.email.password | quote }}
41+
- -period
42+
- {{ .Values.bot.period | quote }}
43+
- -webhook
44+
- {{ .Values.bot.webhook | quote }}
45+
{{- range .Values.bot.allowList}}
46+
- -allowlist
47+
- {{ . | quote }}
4148
{{- end }}
4249
resources:
4350
{{- toYaml .Values.resources | nindent 12 }}

0 commit comments

Comments
 (0)