Skip to content

Commit 116ac4d

Browse files
authored
Merge branch 'main' into feat/notify_push
Signed-off-by: Jesse Hitch <jessebot@linux.com>
2 parents 14a3976 + 2192ce8 commit 116ac4d

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

charts/nextcloud/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,9 @@ The following table lists the configurable parameters of the nextcloud chart and
155155
| `redis.auth.password` | The password redis uses | `''` |
156156
| `redis.auth.existingSecret` | The name of an existing secret with Redis® credentials | `''` |
157157
| `redis.auth.existingSecretPasswordKey` | Password key to be retrieved from existing secret | `''` |
158+
| `redis.global.storageClass` | PVC Storage Class for both Redis&reg; master and replica Persistent Volumes | `''` |
159+
| `redis.master.persistence.enabled` | Enable persistence on Redis&reg; master nodes using Persistent Volume Claims | `true` |
160+
| `redis.replica.persistence.enabled` | Enable persistence on Redis&reg; replica nodes using Persistent Volume Claims | `true` |
158161
| `cronjob.enabled` | Whether to enable/disable cron jobs sidecar | `false` |
159162
| `cronjob.lifecycle.postStartCommand` | Specify deployment lifecycle hook postStartCommand for the cron jobs sidecar | `nil` |
160163
| `cronjob.lifecycle.preStopCommand` | Specify deployment lifecycle hook preStopCommand for the cron jobs sidecar | `nil` |

charts/nextcloud/values.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,15 @@ redis:
376376
existingSecret: ""
377377
# Password key to be retrieved from existing secret
378378
existingSecretPasswordKey: ""
379+
# Since Redis is used for caching only, you might want to use a storageClass with different reclaim policy and backup settings
380+
global:
381+
storageClass: ""
382+
master:
383+
persistence:
384+
enabled: true
385+
replica:
386+
persistence:
387+
enabled: true
379388

380389

381390
## Cronjob to execute Nextcloud background tasks

0 commit comments

Comments
 (0)