Skip to content

Commit e68426b

Browse files
committed
fix custom gateway port
Signed-off-by: Jörn Friedrich Dreyer <[email protected]>
1 parent fdde981 commit e68426b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

templates/gateway/gateway.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
listeners:
1717
- name: opencloud-https
1818
protocol: HTTPS
19-
port: {{ .Valuees.httpRoute.gateway.port | default 443 }}
19+
port: {{ .Values.httpRoute.gateway.port | default 443 }}
2020
hostname: {{ .Values.global.domain.opencloud | quote }}
2121
tls:
2222
mode: Terminate
@@ -32,7 +32,7 @@ spec:
3232
{{- if .Values.keycloak.enabled }}
3333
- name: keycloak-https
3434
protocol: HTTPS
35-
port: {{ .Valuees.httpRoute.gateway.port | default 443 }}
35+
port: {{ .Values.httpRoute.gateway.port | default 443 }}
3636
hostname: {{ .Values.global.domain.keycloak | quote }}
3737
tls:
3838
mode: Terminate
@@ -49,7 +49,7 @@ spec:
4949
{{- if and .Values.opencloud.storage.s3.internal.enabled .Values.opencloud.storage.s3.internal.httpRoute.enabled }}
5050
- name: minio-https
5151
protocol: HTTPS
52-
port: {{ .Valuees.httpRoute.gateway.port | default 443 }}
52+
port: {{ .Values.httpRoute.gateway.port | default 443 }}
5353
hostname: {{ .Values.global.domain.minio | quote }}
5454
tls:
5555
mode: Terminate
@@ -66,7 +66,7 @@ spec:
6666
{{- if .Values.onlyoffice.enabled }}
6767
- name: onlyoffice-https
6868
protocol: HTTPS
69-
port: {{ .Valuees.httpRoute.gateway.port | default 443 }}
69+
port: {{ .Values.httpRoute.gateway.port | default 443 }}
7070
hostname: {{ .Values.global.domain.onlyoffice | quote }}
7171
tls:
7272
mode: Terminate
@@ -83,7 +83,7 @@ spec:
8383
{{- if and .Values.onlyoffice.collaboration.enabled .Values.onlyoffice.enabled }}
8484
- name: collaboration-https
8585
protocol: HTTPS
86-
port: {{ .Valuees.httpRoute.gateway.port | default 443 }}
86+
port: {{ .Values.httpRoute.gateway.port | default 443 }}
8787
hostname: {{ .Values.global.domain.wopi | quote }}
8888
tls:
8989
mode: Terminate

0 commit comments

Comments
 (0)