Skip to content

Commit e755635

Browse files
author
Your Name
committed
Bump up Version
1 parent 7a23c2b commit e755635

File tree

4 files changed

+65
-7
lines changed

4 files changed

+65
-7
lines changed

charts/opencloud-full/deployments/helm/helmfile.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ releases:
3535
- onlyoffice:
3636
enabled: true
3737
domain: onlyoffice.opencloud.test # Domain for OnlyOffice.
38+
persistence:
39+
size: "2Gi" # Added
3840

3941
# --- Networking Configuration ---
4042
- ingress:
@@ -109,26 +111,32 @@ releases:
109111
nats:
110112
persistence:
111113
enabled: true
114+
size: "10Gi"
112115
search:
113116
persistence:
114117
enabled: true
118+
size: "10Gi"
115119
extractor:
116120
type: tika
117121
storagesystem:
118122
persistence:
119123
enabled: true
124+
size: "5Gi"
120125
storageusers:
121126
persistence:
122127
enabled: true
128+
size: "50Gi"
123129
storageBackend:
124130
driver: decomposeds3
125131

126132
thumbnails:
127133
persistence:
128134
enabled: true
135+
size: "10Gi"
129136
web:
130137
persistence:
131138
enabled: true
139+
size: "1Gi"
132140
config:
133141
oidc:
134142
webClientID: web
@@ -200,6 +208,11 @@ releases:
200208
idm:
201209
persistence:
202210
enabled: false
211+
size: "10Gi"
212+
ocm:
213+
persistence:
214+
enabled: false
215+
size: "1Gi"
203216
- extraResources:
204217
- |
205218
apiVersion: v1

charts/opencloud-full/deployments/timoni/configmap.yaml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,27 @@ data:
1717
APPS_INTEGRATION_ENABLED: "true"
1818
WEB_OIDC_WEB_CLIENT_ID: "web"
1919
IDM_PERSISTENCE_ENABLED: "false"
20-
SEARCH_EXTRACTOR_TYPE: "tika"
21-
STORAGE_USERS_BACKEND_DRIVER: "decomposeds3"
22-
23-
OIDC_IDP_INSECURE: "true"
24-
OC_HTTP_API_INSECURE: "true"
25-
20+
IDM_PERSISTENCE_SIZE: "10Gi"
2621
NATS_PERSISTENCE_ENABLED: "true"
22+
NATS_PERSISTENCE_SIZE: "10Gi"
23+
OCM_PERSISTENCE_ENABLED: "false"
24+
OCM_PERSISTENCE_SIZE: "1Gi"
25+
ONLYOFFICE_PERSISTENCE_SIZE: "2Gi"
26+
SEARCH_EXTRACTOR_TYPE: "tika"
2727
SEARCH_PERSISTENCE_ENABLED: "true"
28+
SEARCH_PERSISTENCE_SIZE: "10Gi"
29+
STORAGE_USERS_BACKEND_DRIVER: "decomposeds3"
2830
STORAGE_SYSTEM_PERSISTENCE_ENABLED: "true"
31+
STORAGE_SYSTEM_PERSISTENCE_SIZE: "5Gi"
2932
STORAGE_USERS_PERSISTENCE_ENABLED: "true"
33+
STORAGE_USERS_PERSISTENCE_SIZE: "50Gi"
3034
THUMBNAILS_PERSISTENCE_ENABLED: "true"
35+
THUMBNAILS_PERSISTENCE_SIZE: "10Gi"
3136
WEB_PERSISTENCE_ENABLED: "true"
37+
WEB_PERSISTENCE_SIZE: "1Gi"
38+
39+
OIDC_IDP_INSECURE: "true"
40+
OC_HTTP_API_INSECURE: "true"
3241

3342
###############################################################################
3443
# Keycloak Configuration

charts/opencloud-full/deployments/timoni/opencloud.cue

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bundle: {
1414
}
1515
chart: {
1616
name: "opencloud-full"
17-
version: "2.0.3"
17+
version: "2.0.3 "
1818
}
1919
sync: {
2020
timeout: 5
@@ -45,6 +45,9 @@ bundle: {
4545
}
4646
onlyoffice: {
4747
domain: string @timoni(runtime:string:ONLYOFFICE_DOMAIN)
48+
persistence: {
49+
size: string @timoni(runtime:string:ONLYOFFICE_PERSISTENCE_SIZE)
50+
}
4851
config: {
4952
coAuthoring: {
5053
secret: {
@@ -152,11 +155,13 @@ bundle: {
152155
nats: {
153156
persistence: {
154157
enabled: bool @timoni(runtime:bool:NATS_PERSISTENCE_ENABLED)
158+
size: string @timoni(runtime:string:NATS_PERSISTENCE_SIZE)
155159
}
156160
}
157161
search: {
158162
persistence: {
159163
enabled: bool @timoni(runtime:bool:SEARCH_PERSISTENCE_ENABLED)
164+
size: string @timoni(runtime:string:SEARCH_PERSISTENCE_SIZE)
160165
}
161166
extractor: {
162167
type: string @timoni(runtime:string:SEARCH_EXTRACTOR_TYPE)
@@ -165,11 +170,13 @@ bundle: {
165170
storagesystem: {
166171
persistence: {
167172
enabled: bool @timoni(runtime:bool:STORAGE_SYSTEM_PERSISTENCE_ENABLED)
173+
size: string @timoni(runtime:string:STORAGE_SYSTEM_PERSISTENCE_SIZE)
168174
}
169175
}
170176
storageusers: {
171177
persistence: {
172178
enabled: bool @timoni(runtime:bool:STORAGE_USERS_PERSISTENCE_ENABLED)
179+
size: string @timoni(runtime:string:STORAGE_USERS_PERSISTENCE_SIZE)
173180
}
174181
storageBackend: {
175182
driver: string @timoni(runtime:string:STORAGE_USERS_BACKEND_DRIVER)
@@ -178,11 +185,13 @@ bundle: {
178185
thumbnails: {
179186
persistence: {
180187
enabled: bool @timoni(runtime:bool:THUMBNAILS_PERSISTENCE_ENABLED)
188+
size: string @timoni(runtime:string:THUMBNAILS_PERSISTENCE_SIZE)
181189
}
182190
}
183191
web: {
184192
persistence: {
185193
enabled: bool @timoni(runtime:bool:WEB_PERSISTENCE_ENABLED)
194+
size: string @timoni(runtime:string:WEB_PERSISTENCE_SIZE)
186195
}
187196
config: {
188197
oidc: {
@@ -301,6 +310,13 @@ bundle: {
301310
idm: {
302311
persistence: {
303312
enabled: bool @timoni(runtime:bool:IDM_PERSISTENCE_ENABLED)
313+
size: string @timoni(runtime:string:IDM_PERSISTENCE_SIZE)
314+
}
315+
}
316+
ocm: {
317+
persistence: {
318+
enabled: bool @timoni(runtime:bool:OCM_PERSISTENCE_ENABLED)
319+
size: string @timoni(runtime:string:OCM_PERSISTENCE_SIZE)
304320
}
305321
}
306322
}

charts/opencloud-full/deployments/timoni/runtime.cue

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,16 +92,26 @@ runtime: {
9292
"STORAGE_USERS_BACKEND_DRIVER": "obj.data.STORAGE_USERS_BACKEND_DRIVER"
9393
"WEB_OIDC_WEB_CLIENT_ID": "obj.data.WEB_OIDC_WEB_CLIENT_ID"
9494
"IDM_PERSISTENCE_ENABLED": "obj.data.IDM_PERSISTENCE_ENABLED"
95+
"IDM_PERSISTENCE_SIZE": "obj.data.IDM_PERSISTENCE_SIZE"
96+
"OCM_PERSISTENCE_ENABLED": "obj.data.OCM_PERSISTENCE_ENABLED"
97+
"OCM_PERSISTENCE_SIZE": "obj.data.OCM_PERSISTENCE_SIZE"
9598
"OPENLDAP_LTB_PASSWD_ENABLED": "obj.data.OPENLDAP_LTB_PASSWD_ENABLED"
9699
"OPENLDAP_REPLICATION_ENABLED": "obj.data.OPENLDAP_REPLICATION_ENABLED"
97100
"OIDC_IDP_INSECURE": "obj.data.OIDC_IDP_INSECURE"
98101
"OC_HTTP_API_INSECURE": "obj.data.OC_HTTP_API_INSECURE"
99102
"NATS_PERSISTENCE_ENABLED": "obj.data.NATS_PERSISTENCE_ENABLED"
103+
"NATS_PERSISTENCE_SIZE": "obj.data.NATS_PERSISTENCE_SIZE"
100104
"SEARCH_PERSISTENCE_ENABLED": "obj.data.SEARCH_PERSISTENCE_ENABLED"
105+
"SEARCH_PERSISTENCE_SIZE": "obj.data.SEARCH_PERSISTENCE_SIZE"
101106
"STORAGE_SYSTEM_PERSISTENCE_ENABLED": "obj.data.STORAGE_SYSTEM_PERSISTENCE_ENABLED"
107+
"STORAGE_SYSTEM_PERSISTENCE_SIZE": "obj.data.STORAGE_SYSTEM_PERSISTENCE_SIZE"
102108
"STORAGE_USERS_PERSISTENCE_ENABLED": "obj.data.STORAGE_USERS_PERSISTENCE_ENABLED"
109+
"STORAGE_USERS_PERSISTENCE_SIZE": "obj.data.STORAGE_USERS_PERSISTENCE_SIZE"
103110
"THUMBNAILS_PERSISTENCE_ENABLED": "obj.data.THUMBNAILS_PERSISTENCE_ENABLED"
111+
"THUMBNAILS_PERSISTENCE_SIZE": "obj.data.THUMBNAILS_PERSISTENCE_SIZE"
104112
"WEB_PERSISTENCE_ENABLED": "obj.data.WEB_PERSISTENCE_ENABLED"
113+
"WEB_PERSISTENCE_SIZE": "obj.data.WEB_PERSISTENCE_SIZE"
114+
"ONLYOFFICE_PERSISTENCE_SIZE": "obj.data.ONLYOFFICE_PERSISTENCE_SIZE"
105115
}
106116
}
107117
]
@@ -177,6 +187,16 @@ runtime: {
177187
STORAGE_USERS_PERSISTENCE_ENABLED: true
178188
THUMBNAILS_PERSISTENCE_ENABLED: true
179189
WEB_PERSISTENCE_ENABLED: true
190+
IDM_PERSISTENCE_SIZE: "10Gi"
191+
OCM_PERSISTENCE_ENABLED: false
192+
OCM_PERSISTENCE_SIZE: "1Gi"
193+
NATS_PERSISTENCE_SIZE: "10Gi"
194+
SEARCH_PERSISTENCE_SIZE: "10Gi"
195+
STORAGE_SYSTEM_PERSISTENCE_SIZE: "5Gi"
196+
STORAGE_USERS_PERSISTENCE_SIZE: "50Gi"
197+
THUMBNAILS_PERSISTENCE_SIZE: "10Gi"
198+
WEB_PERSISTENCE_SIZE: "1Gi"
199+
ONLYOFFICE_PERSISTENCE_SIZE: "2Gi"
180200

181201
LDAP_ENABLED: true
182202
TIKA_ENABLED: true

0 commit comments

Comments
 (0)