Skip to content

Commit 94ae0ff

Browse files
authored
Merge branch 'main' into 20250603_tls.enabled_gatewaAPI_resources
2 parents 9be4bba + acbeb6c commit 94ae0ff

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

charts/opencloud/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ maintainers:
1010
1111
url: https://opencloud.eu
1212
type: application
13-
version: 0.1.5
13+
version: 0.1.6
1414
# renovate: datasource=docker depName=opencloudeu/opencloud-rolling
1515
appVersion: latest
1616
kubeVersion: ""

charts/opencloud/templates/gateway/gateway.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ spec:
2727
{{- else }}
2828
protocol: HTTP
2929
{{- end }}
30-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
30+
port: {{ .Values.httpRoute.gateway.port }}
3131
hostname: {{ .Values.global.domain.opencloud | quote }}
3232
{{- if .Values.global.tls.enabled }}
3333
tls:
3434
mode: Terminate
3535
certificateRefs:
36-
- name: opencloud-wildcard-tls
36+
- name: {{ .Values.global.tls.secretName }}
3737
namespace: {{ .Values.httpRoute.gateway.namespace | default .Release.Namespace }}
3838
{{- end }}
3939
allowedRoutes:
@@ -53,13 +53,13 @@ spec:
5353
{{- else }}
5454
protocol: HTTP
5555
{{- end }}
56-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
56+
port: {{ .Values.httpRoute.gateway.port }}
5757
hostname: {{ .Values.global.domain.keycloak | quote }}
5858
{{- if .Values.global.tls.enabled }}
5959
tls:
6060
mode: Terminate
6161
certificateRefs:
62-
- name: opencloud-wildcard-tls
62+
- name: {{ .Values.global.tls.secretName }}
6363
namespace: {{ .Values.httpRoute.gateway.namespace | default .Release.Namespace }}
6464
{{- end }}
6565
allowedRoutes:
@@ -80,13 +80,13 @@ spec:
8080
{{- else }}
8181
protocol: HTTP
8282
{{- end }}
83-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
83+
port: {{ .Values.httpRoute.gateway.port }}
8484
hostname: {{ .Values.global.domain.minio | quote }}
8585
{{- if .Values.global.tls.enabled }}
8686
tls:
8787
mode: Terminate
8888
certificateRefs:
89-
- name: opencloud-wildcard-tls
89+
- name: {{ .Values.global.tls.secretName }}
9090
namespace: {{ .Values.httpRoute.gateway.namespace | default .Release.Namespace }}
9191
{{- end }}
9292
allowedRoutes:
@@ -107,13 +107,13 @@ spec:
107107
{{- else }}
108108
protocol: HTTP
109109
{{- end }}
110-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
110+
port: {{ .Values.httpRoute.gateway.port }}
111111
hostname: {{ .Values.global.domain.collabora | quote }}
112112
{{- if .Values.global.tls.enabled }}
113113
tls:
114114
mode: Terminate
115115
certificateRefs:
116-
- name: opencloud-wildcard-tls
116+
- name: {{ .Values.global.tls.secretName }}
117117
namespace: {{ .Values.httpRoute.gateway.namespace | default .Release.Namespace }}
118118
{{- end }}
119119
allowedRoutes:
@@ -134,13 +134,13 @@ spec:
134134
{{- else }}
135135
protocol: HTTP
136136
{{- end }}
137-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
137+
port: {{ .Values.httpRoute.gateway.port }}
138138
hostname: {{ .Values.global.domain.onlyoffice | quote }}
139139
{{- if .Values.global.tls.enabled }}
140140
tls:
141141
mode: Terminate
142142
certificateRefs:
143-
- name: opencloud-wildcard-tls
143+
- name: {{ .Values.global.tls.secretName }}
144144
namespace: {{ .Values.httpRoute.gateway.namespace | default .Release.Namespace }}
145145
{{- end }}
146146
allowedRoutes:
@@ -161,13 +161,13 @@ spec:
161161
{{- else }}
162162
protocol: HTTP
163163
{{- end }}
164-
port: {{ .Values.httpRoute.gateway.port | default 443 }}
164+
port: {{ .Values.httpRoute.gateway.port }}
165165
hostname: {{ .Values.global.domain.wopi | quote }}
166166
{{- if .Values.global.tls.enabled }}
167167
tls:
168168
mode: Terminate
169169
certificateRefs:
170-
- name: opencloud-wildcard-tls
170+
- name: {{ .Values.global.tls.secretName }}
171171
namespace: {{ .Values.httpRoute.gateway.namespace | default .Release.Namespace }}
172172
{{- end }}
173173
allowedRoutes:

0 commit comments

Comments
 (0)