Skip to content

Commit 52ea62f

Browse files
committed
fix: Use ingress path type ImplementationSpecific instead of Prefix
With later NginX versions, using regex-style syntax in ingress paths is no longer allowed for path type `Prefix`. Thus, switch to `ImplementationSpecific`.
1 parent 60b2731 commit 52ea62f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

charts/theia-cloud/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.1.1
18+
version: 1.1.2
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/theia-cloud/templates/instances-ingress-path-based.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
paths:
6868
{{ with index .http.paths 0 }}
6969
- path: {{ .path }}
70-
pathType: Prefix
70+
pathType: ImplementationSpecific
7171
backend:
7272
service:
7373
name: {{ .backend.service.name }}

charts/theia-cloud/templates/instances-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ spec:
6868
paths:
6969
{{ with index .http.paths 0 }}
7070
- path: {{ .path }}
71-
pathType: Prefix
71+
pathType: ImplementationSpecific
7272
backend:
7373
service:
7474
name: {{ .backend.service.name }}

charts/theia-cloud/templates/landing-page-ingress-path-based.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ spec:
4141
port:
4242
number: 80
4343
path: /{{ if .Values.hosts.configuration.landing }}{{ tpl (.Values.hosts.configuration.landing | toString) . }}(/|$)(.*){{ end }}
44-
pathType: Prefix
44+
pathType: ImplementationSpecific
4545
{{- end }}
4646
{{- end }}

charts/theia-cloud/templates/landing-page-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ spec:
3434
port:
3535
number: 80
3636
path: /
37-
pathType: Prefix
37+
pathType: ImplementationSpecific
3838
{{- end }}
3939
{{- end }}

0 commit comments

Comments
 (0)