Skip to content

Commit a7c99bd

Browse files
authored
Merge pull request #189 from eschwartz/patch-2
Fix unsupported regex in ingress-nginx config
2 parents 66a0731 + e04d2ab commit a7c99bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

helm-chart/eoapi/templates/services/ingress-nginx.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
{{- range $serviceName, $v := .Values }}
3434
{{- if has $serviceName $.Values.apiServices }}
3535
{{- if (index $v "enabled") }}
36-
- pathType: Prefix
36+
- pathType: ImplementationSpecific
3737
path: "/{{ $serviceName }}(/|$)(.*)"
3838
backend:
3939
service:
@@ -44,7 +44,7 @@ spec:
4444
{{- end }}{{/* END: if has $serviceName $.Values.apiServices */}}
4545
{{- end }}{{/* END: range $serviceName, $v := .Values*/}}
4646
{{- if (and (not $.Values.testing) (.Values.docServer.enabled)) }}
47-
- pathType: Prefix
47+
- pathType: ImplementationSpecific
4848
path: /(/|$)
4949
backend:
5050
service:

0 commit comments

Comments
 (0)