Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/opencloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ This will prepend `my-registry.com/` to all image references in the chart. For e
| `opencloud.insecure` | Insecure mode (for self-signed certificates) | `true` |
| `opencloud.existingSecret` | Name of the existing secret | `` |
| `opencloud.adminPassword` | Admin password | `admin` |
| `opencloud.createDemoUsers` | Create demo users | `false` |
| `opencloud.createDemoUsers` | Create demo users in OpenCloud and Keycloak (alan, dennis, lynn, margaret, mary) | `false` |
| `opencloud.resources` | CPU/Memory resource requests/limits | `{}` |
| `opencloud.persistence.enabled` | Enable persistence | `true` |
| `opencloud.persistence.size` | Size of the persistent volume | `10Gi` |
Expand Down
8 changes: 6 additions & 2 deletions charts/opencloud/files/keycloak/opencloud-realm.json.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,9 @@
"webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false,
"webAuthnPolicyPasswordlessAcceptableAaguids" : [ ],
"webAuthnPolicyPasswordlessExtraOrigins" : [ ],
"users" : [ {
"users" : [
{{- if .Values.opencloud.createDemoUsers }}
{
"id" : "0ab77e6d-23b4-4ba3-9843-a3b3efdcfc53",
"username" : "admin",
"firstName" : "Admin",
Expand Down Expand Up @@ -622,7 +624,9 @@
"realmRoles" : [ "default-roles-opencloud", "opencloudUser" ],
"notBefore" : 0,
"groups" : [ "/bible-readers", "/users" ]
} ],
}
{{- end }}
Comment thread
michaelstingl marked this conversation as resolved.
],
"scopeMappings" : [ {
"clientScope" : "offline_access",
"roles" : [ "offline_access" ]
Expand Down