Skip to content

Commit f3c8839

Browse files
authored
quote host name in ingress templates (#572)
1 parent 423a5e8 commit f3c8839

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

charts/jaeger/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: 1.53.0
33
description: A Jaeger Helm chart for Kubernetes
44
name: jaeger
55
type: application
6-
version: 3.0.6
6+
version: 3.0.7
77
# CronJobs require v1.21
88
kubeVersion: ">= 1.21-0"
99
keywords:

charts/jaeger/templates/collector-ing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
{{- end }}
2323
rules:
2424
{{- range .Values.collector.ingress.hosts }}
25-
- host: {{ include "jaeger.collector.ingressHost" . }}
25+
- host: {{ include "jaeger.collector.ingressHost" . | quote }}
2626
http:
2727
paths:
2828
- path: {{ $basePath }}

charts/jaeger/templates/hotrod-ing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
{{- end }}
2121
rules:
2222
{{- range $host := .Values.hotrod.ingress.hosts }}
23-
- host: {{ $host }}
23+
- host: {{ $host | quote}}
2424
http:
2525
paths:
2626
- path: /

charts/jaeger/templates/query-ing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
{{- end }}
2323
rules:
2424
{{- range $host := .Values.query.ingress.hosts }}
25-
- host: {{ $host }}
25+
- host: {{ $host | quote }}
2626
http:
2727
paths:
2828
- path: {{ $basePath }}

0 commit comments

Comments
 (0)