File tree Expand file tree Collapse file tree 7 files changed +18
-7
lines changed
charts/opencloud-microservices Expand file tree Collapse file tree 7 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,8 @@ timoni bundle apply -f ./charts/opencloud-microservices/deployments/timoni/openc
174
174
175
175
The charts are also available in the GitHub Container Registry (GHCR) as OCI artifacts:
176
176
177
+ Change the repo url to: ghcr.io/opencloud-eu/helm-charts/opencloud-microservices
178
+
177
179
``` bash
178
180
cd charts/opencloud-microservices/deployments
179
181
helmfile sync
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ repositories:
13
13
releases :
14
14
# --- OpenCloud Microservice Chart Release ---
15
15
# Deploys the main OpenCloud application with all its integrated services.
16
- - name : opencloud-helm
17
- namespace : opencloud-helm # Dedicated namespace for the OpenCloud deployment.
16
+ - name : opencloud
17
+ namespace : opencloud # Dedicated namespace for the OpenCloud deployment.
18
18
chart : ../../ # Path to the OpenCloud Helm chart.
19
19
values :
20
20
# --- General Settings ---
Original file line number Diff line number Diff line change 1
- # Install
2
-
1
+ # Install/Upgrate
3
2
kubectl apply -f ./charts/opencloud-microservices/deployments/timoni/ && \
4
3
timoni bundle apply -f ./charts/opencloud-microservices/deployments/timoni/opencloud.cue --runtime ./charts/opencloud-microservices/deployments/timoni/runtime.cue
5
4
Original file line number Diff line number Diff line change 93
93
# Collabora Configuration
94
94
# ##############################################################################
95
95
COLLABORA_URI : " https://collabora.opencloud.test"
96
+ COLLABORA_DOMAIN : " collabora.opencloud.test"
96
97
COLLABORA_ICON_URI : " https://collabora.opencloud.test/favicon.ico"
97
98
COLLABORA_ENABLED : " true"
98
99
COLLABORA_INSECURE : " true"
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ bundle: {
21
21
namespace : " opencloud "
22
22
values : {
23
23
repository : {
24
- url : " oci://ghcr.io/suse-coder /helm-charts "
24
+ url : " oci://ghcr.io/opencloud-eu /helm-charts "
25
25
}
26
26
chart : {
27
27
name : " opencloud-microservices "
28
- version : " * "
28
+ version : " 0.1.0 "
29
29
}
30
30
sync : {
31
31
timeout : 10
@@ -56,7 +56,12 @@ bundle: {
56
56
}
57
57
}
58
58
}
59
+ collabora : {
60
+ enabled : bool @timoni (runtime:bool:COLLABORA_ENABLED )
61
+ domain : string @timoni (runtime:string:COLLABORA_DOMAIN )
62
+ }
59
63
onlyoffice : {
64
+ enabled : bool @timoni (runtime:bool:ONLYOFFICE_ENABLED )
60
65
domain : string @timoni (runtime:string:ONLYOFFICE_DOMAIN )
61
66
persistence : {
62
67
size : string @timoni (runtime:string:ONLYOFFICE_PERSISTENCE_SIZE )
@@ -499,3 +504,4 @@ bundle: {
499
504
}
500
505
}
501
506
}
507
+
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ runtime: {
51
51
" LDAP_URI " : " obj.data.LDAP_URI "
52
52
" OIDC_ISSUER_URI " : " obj.data.OIDC_ISSUER_URI "
53
53
" COLLABORA_URI " : " obj.data.COLLABORA_URI "
54
+ " COLLABORA_DOMAIN " : " obj.data.COLLABORA_DOMAIN "
54
55
" COLLABORA_ICON_URI " : " obj.data.COLLABORA_ICON_URI "
55
56
" WOPI_INGRESS_DOMAIN " : " obj.data.WOPI_INGRESS_DOMAIN "
56
57
" WOPI_COLLABORA_TLS_HOST " : " obj.data.WOPI_COLLABORA_TLS_HOST "
@@ -135,6 +136,7 @@ runtime: {
135
136
LDAP_URI : " ldap://openldap.openldap.svc.cluster.local:389 "
136
137
OIDC_ISSUER_URI : " https://keycloak.opencloud.test/realms/openCloud "
137
138
COLLABORA_URI : " https://collabora.opencloud.test "
139
+ COLLABORA_DOMAIN : " collabora.opencloud.test "
138
140
COLLABORA_ICON_URI : " https://collabora.opencloud.test/favicon.ico "
139
141
WOPI_INGRESS_DOMAIN : " wopi.opencloud.test "
140
142
WOPI_COLLABORA_TLS_HOST : " wopi-collabora.kube.opencloud.test "
Original file line number Diff line number Diff line change 13
13
fsGroup : 1000
14
14
initContainers :
15
15
- name : init-minio-bucket
16
- image : busybox
16
+ image : " {{ .Values.minio.image.registry }}/busybox:{{ .Values.minio.image.tag }}"
17
+ imagePullPolicy : {{.Values.minio.image.pullPolicy | default "IfNotPresent" }}
17
18
securityContext :
18
19
runAsUser : 1000
19
20
runAsGroup : 1000
You can’t perform that action at this time.
0 commit comments