Skip to content

Commit

Permalink
helm: Quote ingress paths
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Oct 23, 2019
1 parent 2e7395c commit dc495c4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion helm/charts/example-idp/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
- path: {{ . | quote }}
backend:
serviceName: {{ $fullName }}
servicePort: http
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
- path: {{ . | quote }}
backend:
serviceName: {{ $fullName }}
servicePort: http
Expand Down
2 changes: 1 addition & 1 deletion helm/charts/hive/templates/ingress-admin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
- path: {{ . | quote }}
backend:
serviceName: {{ $fullName }}-admin
servicePort: http
Expand Down
2 changes: 1 addition & 1 deletion helm/charts/hive/templates/ingress-public.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
- path: {{ . | quote }}
backend:
serviceName: {{ $fullName }}-public
servicePort: http
Expand Down
2 changes: 1 addition & 1 deletion helm/charts/hydra/templates/ingress-admin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
- path: {{ . | quote }}
backend:
serviceName: {{ $fullName }}-admin
servicePort: http
Expand Down
2 changes: 1 addition & 1 deletion helm/charts/hydra/templates/ingress-public.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
- path: {{ . | quote }}
backend:
serviceName: {{ $fullName }}-public
servicePort: http
Expand Down
2 changes: 1 addition & 1 deletion helm/charts/oathkeeper/templates/ingress-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
- path: {{ . | quote }}
backend:
serviceName: {{ $fullName }}-api
servicePort: http
Expand Down
2 changes: 1 addition & 1 deletion helm/charts/oathkeeper/templates/ingress-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
http:
paths:
{{- range .paths }}
- path: {{ . }}
- path: {{ . | quote }}
backend:
serviceName: {{ $fullName }}-proxy
servicePort: http
Expand Down

0 comments on commit dc495c4

Please sign in to comment.