diff --git a/charts/noncer/Chart.yaml b/charts/noncer/Chart.yaml index 11bb73c..b17c022 100644 --- a/charts/noncer/Chart.yaml +++ b/charts/noncer/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.0.1 +version: 0.0.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/noncer/templates/deployment.yaml b/charts/noncer/templates/deployment.yaml index c48f320..295d3ad 100644 --- a/charts/noncer/templates/deployment.yaml +++ b/charts/noncer/templates/deployment.yaml @@ -30,14 +30,21 @@ spec: image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} args: - - "-user {{ .Values.email.user }}" - - "-host {{ .Values.email.host }}" - - "-port {{ .Values.email.port }}" - - "-pass {{ .Values.email.password }}" - - "-period {{ .Values.bot.period }}" - - "-webhook {{ .Values.bot.webhook }}" - {{- range .Values.bot.allowList }} - - "-allowlist {{ . }}" + - -user + - {{ .Values.email.user | quote }} + - -host + - {{ .Values.email.host | quote }} + - -port + - {{ .Values.email.port }} + - -pass + - {{ .Values.email.password | quote }} + - -period + - {{ .Values.bot.period | quote }} + - -webhook + - {{ .Values.bot.webhook | quote }} + {{- range .Values.bot.allowList}} + - -allowlist + - {{ . | quote }} {{- end }} resources: {{- toYaml .Values.resources | nindent 12 }}