Skip to content

Commit f812a35

Browse files
committed
charts/opencloud/templates/gateway/gateway.yaml: remove default for port 443, as that is set in the values.yaml as default already
1 parent 9e74a10 commit f812a35

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

charts/opencloud/templates/gateway/gateway.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
listeners:
2020
- name: opencloud-https
2121
protocol: HTTPS
22-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
22+
port: {{ .Values.httpRoute.gateway.port }}
2323
hostname: {{ .Values.global.domain.opencloud | quote }}
2424
tls:
2525
mode: Terminate
@@ -35,7 +35,7 @@ spec:
3535
{{- if .Values.keycloak.enabled }}
3636
- name: keycloak-https
3737
protocol: HTTPS
38-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
38+
port: {{ .Values.httpRoute.gateway.port }}
3939
hostname: {{ .Values.global.domain.keycloak | quote }}
4040
tls:
4141
mode: Terminate
@@ -52,7 +52,7 @@ spec:
5252
{{- if and .Values.opencloud.storage.s3.internal.enabled .Values.opencloud.storage.s3.internal.httpRoute.enabled }}
5353
- name: minio-https
5454
protocol: HTTPS
55-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
55+
port: {{ .Values.httpRoute.gateway.port }}
5656
hostname: {{ .Values.global.domain.minio | quote }}
5757
tls:
5858
mode: Terminate
@@ -69,7 +69,7 @@ spec:
6969
{{- if .Values.collabora.enabled }}
7070
- name: collabora-https
7171
protocol: HTTPS
72-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
72+
port: {{ .Values.httpRoute.gateway.port }}
7373
hostname: {{ .Values.global.domain.collabora | quote }}
7474
tls:
7575
mode: Terminate
@@ -86,7 +86,7 @@ spec:
8686
{{- if .Values.onlyoffice.enabled }}
8787
- name: onlyoffice-https
8888
protocol: HTTPS
89-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
89+
port: {{ .Values.httpRoute.gateway.port }}
9090
hostname: {{ .Values.global.domain.onlyoffice | quote }}
9191
tls:
9292
mode: Terminate
@@ -103,7 +103,7 @@ spec:
103103
{{- if and .Values.onlyoffice.collaboration.enabled .Values.onlyoffice.enabled }}
104104
- name: collaboration-https
105105
protocol: HTTPS
106-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
106+
port: {{ .Values.httpRoute.gateway.port }}
107107
hostname: {{ .Values.global.domain.wopi | quote }}
108108
tls:
109109
mode: Terminate

0 commit comments

Comments
 (0)