We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cc6b4d commit 99dc657Copy full SHA for 99dc657
deployment-configuration/helm/templates/ingress.yaml
@@ -18,7 +18,8 @@
18
number: {{ $app.harness.service.port | default 80 }}
19
{{- else if hasSuffix "/*" $uri }}
20
{{- $cleanPath := trimSuffix "/*" $uri }}
21
- - path: {{ printf "%s/(.*)" $cleanPath }}
+ {{- $pathWithoutSlash := trimPrefix "/" $cleanPath }}
22
+ - path: {{ printf "/(%s/.*)" $pathWithoutSlash }}
23
pathType: ImplementationSpecific
24
backend:
25
service:
0 commit comments