Skip to content

Commit

Permalink
quote host name in ingress templates (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
coryflucas authored May 6, 2024
1 parent 423a5e8 commit f3c8839
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/jaeger/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 1.53.0
description: A Jaeger Helm chart for Kubernetes
name: jaeger
type: application
version: 3.0.6
version: 3.0.7
# CronJobs require v1.21
kubeVersion: ">= 1.21-0"
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/jaeger/templates/collector-ing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
{{- end }}
rules:
{{- range .Values.collector.ingress.hosts }}
- host: {{ include "jaeger.collector.ingressHost" . }}
- host: {{ include "jaeger.collector.ingressHost" . | quote }}
http:
paths:
- path: {{ $basePath }}
Expand Down
2 changes: 1 addition & 1 deletion charts/jaeger/templates/hotrod-ing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
{{- end }}
rules:
{{- range $host := .Values.hotrod.ingress.hosts }}
- host: {{ $host }}
- host: {{ $host | quote}}
http:
paths:
- path: /
Expand Down
2 changes: 1 addition & 1 deletion charts/jaeger/templates/query-ing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
{{- end }}
rules:
{{- range $host := .Values.query.ingress.hosts }}
- host: {{ $host }}
- host: {{ $host | quote }}
http:
paths:
- path: {{ $basePath }}
Expand Down

0 comments on commit f3c8839

Please sign in to comment.