Skip to content

Commit

Permalink
Update deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeemster committed Jul 25, 2022
1 parent 0e70349 commit c41eb27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/service-deployment/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: Always

{{- if .Values.config.command }}
{{- if .Values.config.command }}
command:
{{- range $v := .Values.config.command }}
- "{{ $v }}"
{{- end }}
{{- end }}

{{- if .Values.config.args }}
{{- if .Values.config.args }}
args:
{{- range $v := .Values.config.args }}
- "{{ $v }}"
{{- end }}
{{- end }}

{{- if .Values.config.env }}
{{- if .Values.config.env }}
env:
{{- range $k, $v := .Values.config.env }}
- name: "{{ $k }}"
Expand Down

0 comments on commit c41eb27

Please sign in to comment.