Allow disabling the default Redis installation when a custom one is specified.
This commit is contained in:
parent
dacb080c78
commit
06e15afbac
2 changed files with 8 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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: ''
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue