From f3c1b188aca5cbf08669b88bd602b3292dc3e7d0 Mon Sep 17 00:00:00 2001 From: Florian Piesche Date: Sun, 21 Mar 2021 22:27:25 +0000 Subject: [PATCH] Remove auto-generating Redis password. --- charts/funkwhale/templates/_helpers.tpl | 2 +- charts/funkwhale/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/funkwhale/templates/_helpers.tpl b/charts/funkwhale/templates/_helpers.tpl index fbb92f1..e6f5c7b 100644 --- a/charts/funkwhale/templates/_helpers.tpl +++ b/charts/funkwhale/templates/_helpers.tpl @@ -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 -}} {{/* diff --git a/charts/funkwhale/values.yaml b/charts/funkwhale/values.yaml index 17e3940..3f217a5 100644 --- a/charts/funkwhale/values.yaml +++ b/charts/funkwhale/values.yaml @@ -53,7 +53,7 @@ redis: host: '' redisPort: 6379 - password: '' + password: 'funkwhale' cluster: enabled: false