Skip to content

Commit

Permalink
microverse-app: quote values
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeczalik committed May 14, 2018
1 parent d07c851 commit 2ce8f3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
{{- if .Values.nodeSelector }}
nodeSelector:
{{- range $k, $v := .Values.nodeSelector }}
{{ $k }}: {{ $v }}
{{ $k }}: "{{ $v }}"
{{ end -}}
{{ end }}
containers:
Expand All @@ -36,8 +36,8 @@ spec:
{{- if .Values.env }}
env:
{{- range $k, $v := .Values.env }}
- name: {{ $k }}
value: {{ $v }}
- name: "{{ $k }}"
value: "{{ $v }}"
{{ end -}}
{{ end }}
ports:
Expand Down

0 comments on commit 2ce8f3d

Please sign in to comment.