File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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® ; master and replica Persistent Volumes | ` '' ` |
159+ | ` redis.master.persistence.enabled ` | Enable persistence on Redis® ; master nodes using Persistent Volume Claims | ` true ` |
160+ | ` redis.replica.persistence.enabled ` | Enable persistence on Redis® ; 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 ` |
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments