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:
242242 - ltb-passwd :
243243 enabled : false # Disable password management tool if not needed.
244244 - replication :
245- enabled : true # Enable replication for high availability.
245+ enabled : false # Enable replication for high availability.
246+ - replicaCount : 1
246247 - global :
247248 ldapDomain : " opencloud.eu" # Set the base LDAP domain.
248249 # TODO: Change both adminPassword and configPassword to strong, secure values.
249250 adminPassword : admin
250251 configPassword : config
251252 - customLdifFiles :
253+ set_logging.ldif : |-
254+ dn: cn=config
255+ changetype: modify
256+ replace: olcLogLevel
257+ olcLogLevel: stats sync
252258 opencloud_root.ldif : |-
253259 dn: dc=opencloud,dc=eu
254260 objectClass: organization
@@ -265,6 +271,7 @@ releases:
265271 objectClass: person
266272 cn: admin
267273 sn: admin
274+ uid: ldapadmin
268275
269276 dn: ou=groups,dc=opencloud,dc=eu
270277 objectClass: organizationalUnit
Original file line number Diff line number Diff line change 6565 LDAP_USER_SCHEMA_ID : " openCloudUUID"
6666 LDAP_GROUP_SCHEMA_ID : " openCloudUUID"
6767 OPENLDAP_LTB_PASSWD_ENABLED : " false"
68- OPENLDAP_REPLICATION_ENABLED : " true"
68+ OPENLDAP_REPLICATION_ENABLED : " false"
69+ OPENLDAP_REPLICA_COUNT : " 1"
6970
7071 # ##############################################################################
7172 # OIDC Configuration
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ bundle: {
1414 }
1515 chart : {
1616 name : " opencloud-full "
17- version : " 2.0.4 "
17+ version : " 2.0.5 "
1818 }
1919 sync : {
2020 timeout : 5
@@ -350,6 +350,7 @@ bundle: {
350350 replication : {
351351 enabled : bool @timoni (runtime:bool:OPENLDAP_REPLICATION_ENABLED )
352352 }
353+ replicas : string @timoni (runtime:string:OPENLDAP_REPLICA_COUNT )
353354 global : {
354355 ldapDomain : string @timoni (runtime:string:LDAP_GLOBAL_DOMAIN )
355356 adminPassword : string @timoni (runtime:string:LDAP_ADMIN_PASSWORD )
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ runtime: {
9898 " OCM_PERSISTENCE_SIZE " : " obj.data.OCM_PERSISTENCE_SIZE "
9999 " OPENLDAP_LTB_PASSWD_ENABLED " : " obj.data.OPENLDAP_LTB_PASSWD_ENABLED "
100100 " OPENLDAP_REPLICATION_ENABLED " : " obj.data.OPENLDAP_REPLICATION_ENABLED "
101+ " OPENLDAP_REPLICA_COUNT " : " obj.data.OPENLDAP_REPLICA_COUNT "
101102 " OIDC_IDP_INSECURE " : " obj.data.OIDC_IDP_INSECURE "
102103 " OC_HTTP_API_INSECURE " : " obj.data.OC_HTTP_API_INSECURE "
103104 " NATS_PERSISTENCE_ENABLED " : " obj.data.NATS_PERSISTENCE_ENABLED "
@@ -178,7 +179,8 @@ runtime: {
178179 WEB_OIDC_WEB_CLIENT_ID : " web "
179180 IDM_PERSISTENCE_ENABLED : false
180181 OPENLDAP_LTB_PASSWD_ENABLED : false
181- OPENLDAP_REPLICATION_ENABLED : true
182+ OPENLDAP_REPLICATION_ENABLED : false
183+ OPENLDAP_REPLICA_COUNT : 1
182184
183185 OIDC_IDP_INSECURE : true
184186 OC_HTTP_API_INSECURE : true
@@ -207,6 +209,7 @@ runtime: {
207209 OIDC_INSECURE : true
208210 OC_HTTP_INSECURE : true
209211 REPLICAS : 1
212+ REPLICATION_ENABLED : false
210213 RESOURCES_CPU_REQUEST : " 100m "
211214 RESOURCES_MEM_REQUEST : " 128Mi "
212215 RESOURCES_CPU_LIMIT : " 500m "
You can’t perform that action at this time.
0 commit comments