File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed
charts/opencloud-full/deployments Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -242,13 +242,19 @@ releases:
242
242
- ltb-passwd :
243
243
enabled : false # Disable password management tool if not needed.
244
244
- replication :
245
- enabled : true # Enable replication for high availability.
245
+ enabled : false # Enable replication for high availability.
246
+ - replicaCount : 1
246
247
- global :
247
248
ldapDomain : " opencloud.eu" # Set the base LDAP domain.
248
249
# TODO: Change both adminPassword and configPassword to strong, secure values.
249
250
adminPassword : admin
250
251
configPassword : config
251
252
- customLdifFiles :
253
+ set_logging.ldif : |-
254
+ dn: cn=config
255
+ changetype: modify
256
+ replace: olcLogLevel
257
+ olcLogLevel: stats sync
252
258
opencloud_root.ldif : |-
253
259
dn: dc=opencloud,dc=eu
254
260
objectClass: organization
@@ -265,6 +271,7 @@ releases:
265
271
objectClass: person
266
272
cn: admin
267
273
sn: admin
274
+ uid: ldapadmin
268
275
269
276
dn: ou=groups,dc=opencloud,dc=eu
270
277
objectClass: organizationalUnit
Original file line number Diff line number Diff line change 65
65
LDAP_USER_SCHEMA_ID : " openCloudUUID"
66
66
LDAP_GROUP_SCHEMA_ID : " openCloudUUID"
67
67
OPENLDAP_LTB_PASSWD_ENABLED : " false"
68
- OPENLDAP_REPLICATION_ENABLED : " true"
68
+ OPENLDAP_REPLICATION_ENABLED : " false"
69
+ OPENLDAP_REPLICA_COUNT : " 1"
69
70
70
71
# ##############################################################################
71
72
# OIDC Configuration
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ bundle: {
14
14
}
15
15
chart : {
16
16
name : " opencloud-full "
17
- version : " 2.0.4 "
17
+ version : " 2.0.5 "
18
18
}
19
19
sync : {
20
20
timeout : 5
@@ -350,6 +350,7 @@ bundle: {
350
350
replication : {
351
351
enabled : bool @timoni (runtime:bool:OPENLDAP_REPLICATION_ENABLED )
352
352
}
353
+ replicas : string @timoni (runtime:string:OPENLDAP_REPLICA_COUNT )
353
354
global : {
354
355
ldapDomain : string @timoni (runtime:string:LDAP_GLOBAL_DOMAIN )
355
356
adminPassword : string @timoni (runtime:string:LDAP_ADMIN_PASSWORD )
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ runtime: {
98
98
" OCM_PERSISTENCE_SIZE " : " obj.data.OCM_PERSISTENCE_SIZE "
99
99
" OPENLDAP_LTB_PASSWD_ENABLED " : " obj.data.OPENLDAP_LTB_PASSWD_ENABLED "
100
100
" OPENLDAP_REPLICATION_ENABLED " : " obj.data.OPENLDAP_REPLICATION_ENABLED "
101
+ " OPENLDAP_REPLICA_COUNT " : " obj.data.OPENLDAP_REPLICA_COUNT "
101
102
" OIDC_IDP_INSECURE " : " obj.data.OIDC_IDP_INSECURE "
102
103
" OC_HTTP_API_INSECURE " : " obj.data.OC_HTTP_API_INSECURE "
103
104
" NATS_PERSISTENCE_ENABLED " : " obj.data.NATS_PERSISTENCE_ENABLED "
@@ -178,7 +179,8 @@ runtime: {
178
179
WEB_OIDC_WEB_CLIENT_ID : " web "
179
180
IDM_PERSISTENCE_ENABLED : false
180
181
OPENLDAP_LTB_PASSWD_ENABLED : false
181
- OPENLDAP_REPLICATION_ENABLED : true
182
+ OPENLDAP_REPLICATION_ENABLED : false
183
+ OPENLDAP_REPLICA_COUNT : 1
182
184
183
185
OIDC_IDP_INSECURE : true
184
186
OC_HTTP_API_INSECURE : true
@@ -207,6 +209,7 @@ runtime: {
207
209
OIDC_INSECURE : true
208
210
OC_HTTP_INSECURE : true
209
211
REPLICAS : 1
212
+ REPLICATION_ENABLED : false
210
213
RESOURCES_CPU_REQUEST : " 100m "
211
214
RESOURCES_MEM_REQUEST : " 128Mi "
212
215
RESOURCES_CPU_LIMIT : " 500m "
You can’t perform that action at this time.
0 commit comments