Skip to content
Merged
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
4 changes: 2 additions & 2 deletions charts/dragonflydb-instance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ dragonflydb-instance Helm chart

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| acl | object | `{"enabled":true,"existingSecret":"","key":"","optional":false,"rules":""}` | Access Control List (ACL) configuration |
| acl.enabled | bool | `true` | Enable ACL |
| acl | object | `{"enabled":false,"existingSecret":"","key":"","optional":false,"rules":""}` | Access Control List (ACL) configuration |
| acl.enabled | bool | `false` | Enable ACL |
| acl.rules | string | `""` | The ACL rules to apply to the database if existingSecret is empty @see https://www.dragonflydb.io/docs/managing-dragonfly/acl Example: rules: | user user on >pass ~* &* +@string +@fast -@slow +set user rouser on >ropass ~* &* +@read |
| affinity | object | `{}` | Affinity rules for pod assignment @see https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity |
| args | list | `[]` | DragonflyDB configuration flags @see https://www.dragonflydb.io/docs/managing-dragonfly/flags |
Expand Down
2 changes: 1 addition & 1 deletion charts/dragonflydb-instance/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pdb:
# -- Access Control List (ACL) configuration
acl:
# -- Enable ACL
enabled: true
enabled: false
# If empty, a new secret will be created
existingSecret: ""
# If true, the ACL rules will be optional
Expand Down
Loading