Skip to content

Commit

Permalink
helm: Reverse path quoting (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr authored Oct 23, 2019
1 parent 0042ced commit ccdc291
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: {{ . | quote }}
- path: {{ . }}
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: {{ . | quote }}
- path: {{ . }}
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: {{ . | quote }}
- path: {{ . }}
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: {{ . | quote }}
- path: {{ . }}
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: {{ . | quote }}
- path: {{ . }}
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: {{ . | quote }}
- path: {{ . }}
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: {{ . | quote }}
- path: {{ . }}
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: {{ . | quote }}
- path: {{ . }}
backend:
serviceName: {{ $fullName }}-proxy
servicePort: http
Expand Down

0 comments on commit ccdc291

Please sign in to comment.