Remove auto-generating Redis password.
This commit is contained in:
parent
094a76b647
commit
f3c1b188ac
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ postgres://{{ .Values.database.user }}:{{ .Values.database.password }}@{{ .Value
|
|||
{{- end -}}
|
||||
|
||||
{{- define "funkwhale.redisUrl" -}}
|
||||
redis://:{{ default uuidv4 .Values.redis.password }}@{{ .Values.redis.host | default (printf "%s-%s" (include "funkwhale.fullname" .) "redis-master") }}:{{ .Values.redis.redisPort }}/0
|
||||
redis://:{{ .Values.redis.password }}@{{ .Values.redis.host | default (printf "%s-%s" (include "funkwhale.fullname" .) "redis-master") }}:{{ .Values.redis.redisPort }}/0
|
||||
{{- end -}}
|
||||
|
||||
{{/*
|
||||
|
|
|
@ -53,7 +53,7 @@ redis:
|
|||
|
||||
host: ''
|
||||
redisPort: 6379
|
||||
password: ''
|
||||
password: 'funkwhale'
|
||||
|
||||
cluster:
|
||||
enabled: false
|
||||
|
|
Loading…
Reference in a new issue