Allow disabling the default Redis installation when a custom one is specified.

This commit is contained in:
Florian Piesche 2021-03-18 08:58:50 +00:00
parent dacb080c78
commit 06e15afbac
No known key found for this signature in database
GPG key ID: CF7283FB896221F3
2 changed files with 8 additions and 3 deletions

View file

@ -2,3 +2,4 @@ dependencies:
- name: redis - name: redis
version: ~10.6.10 version: ~10.6.10
repository: https://charts.bitnami.com/bitnami repository: https://charts.bitnami.com/bitnami
condition: redis.internal.enabled

View file

@ -47,6 +47,13 @@ database:
database: funkwhale database: funkwhale
redis: redis:
password: funkwhale
redisPort: 6379
host: {{ template "funkwhale.fullname" . }}-redis-master
# If you already have a Redis service you'd like to use, set
# this to false and adjust the host to use your existing service.
internal:
enabled: true
cluster: cluster:
enabled: false enabled: false
master: master:
@ -55,9 +62,6 @@ redis:
slave: slave:
persistence: persistence:
enabled: false enabled: false
password: funkwhale
redisPort: 6379
host: {{ template "funkwhale.fullname" . }}-redis-master
djangoSecret: '' djangoSecret: ''