Skip to content
This repository was archived by the owner on May 27, 2019. It is now read-only.

Commit 65b7487

Browse files
committed
fix(charts): quote annotation values
1 parent f81d872 commit 65b7487

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

charts/router/templates/router-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
annotations:
88
component.deis.io/version: {{ .Values.docker_tag }}
99
{{- range $key, $value := .Values.deployment_annotations }}
10-
{{ $key }}: {{ $value }}
10+
{{ $key }}: {{ quote $value }}
1111
{{- end }}
1212
{{- if not (empty .Values.platform_domain) }}
1313
router.deis.io/nginx.platformDomain: {{ .Values.platform_domain }}

charts/router/templates/router-service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
{{- if .Values.service_annotations }}
66
annotations:
77
{{- range $key, $value := .Values.service_annotations }}
8-
{{ $key }}: {{ $value }}
8+
{{ $key }}: {{ quote $value }}
99
{{- end }}
1010
{{- end }}
1111
labels:

0 commit comments

Comments
 (0)