From c7500c45767e5ece5e009f443f37f634263d1803 Mon Sep 17 00:00:00 2001
From: Varac <varac@varac.net>
Date: Tue, 4 Oct 2022 14:41:35 +0200
Subject: [PATCH] Configure redis authentication

---
 templates/onlyoffice-deployment.yaml | 2 +-
 values-local.yaml.example            | 3 +++
 values.yaml                          | 4 ----
 3 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/templates/onlyoffice-deployment.yaml b/templates/onlyoffice-deployment.yaml
index 1727901d..53908665 100644
--- a/templates/onlyoffice-deployment.yaml
+++ b/templates/onlyoffice-deployment.yaml
@@ -101,7 +101,7 @@ spec:
             - name: REDIS_SERVER_HOST
               value: "{{ .Release.Name }}-redis-master"
             - name: REDIS_SERVER_PORT
-              value: "{{ .Values.redis.master.service.ports.redis }}"
+              value: "{{ .Values.nextcloud.redis.master.service.ports.redis }}"
             - name: GENERATE_FONTS
               value: "{{ .Values.onlyoffice.generateFonts }}"
             {{- if .Values.nextcloud.redis.auth.enabled }}
diff --git a/values-local.yaml.example b/values-local.yaml.example
index ff9c7cdd..87d4630e 100644
--- a/values-local.yaml.example
+++ b/values-local.yaml.example
@@ -28,6 +28,9 @@ nextcloud:
     #     ## Enable mariadb persistence using Persistent Volume Claims.
     #     enabled: true
     #     size: 512Mi
+  redis:
+    auth:
+      password: CHANGE_ME
 
   # Creates a kubernetes cronJob object that runs nextcloud's cron.php
   # every 5 minutes (*/5 * * * *)
diff --git a/values.yaml b/values.yaml
index 5154edf8..a0a0f7de 100644
--- a/values.yaml
+++ b/values.yaml
@@ -22,10 +22,6 @@ nextcloud:
 
   redis:
     enabled: true
-    auth:
-      enabled: false
-      usePassword: false
-      password: ''
     architecture: standalone
 
   # Use 2 GB of storage for NC storage (maybe make configurable later?)
-- 
GitLab