Remove auto-generating Redis password.

This commit is contained in:
Florian Piesche 2021-03-21 22:27:25 +00:00
parent 094a76b647
commit f3c1b188ac
No known key found for this signature in database
GPG key ID: CF7283FB896221F3
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ postgres://{{ .Values.database.user }}:{{ .Values.database.password }}@{{ .Value
{{- end -}} {{- end -}}
{{- define "funkwhale.redisUrl" -}} {{- 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 -}} {{- end -}}
{{/* {{/*

View file

@ -53,7 +53,7 @@ redis:
host: '' host: ''
redisPort: 6379 redisPort: 6379
password: '' password: 'funkwhale'
cluster: cluster:
enabled: false enabled: false