From 717bcd1eaea588903d23d0e849509deec34c9fce Mon Sep 17 00:00:00 2001 From: esulzickis Date: Sat, 15 Aug 2026 08:13:00 +0200 Subject: [PATCH 1/2] fix: Mount the writable emptyDir file into the nextcloud container directly Signed-off-by: esulzickis --- charts/nextcloud/templates/deployment.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/charts/nextcloud/templates/deployment.yaml b/charts/nextcloud/templates/deployment.yaml index ab2ddc3e..1ef42f9f 100644 --- a/charts/nextcloud/templates/deployment.yaml +++ b/charts/nextcloud/templates/deployment.yaml @@ -76,6 +76,11 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} volumeMounts: + {{- if .Values.redis.enabled }} + - name: php-confd + mountPath: "/usr/local/etc/php/conf.d/redis-session.ini" + subPath: redis-session.ini + {{- end }} {{- include "nextcloud.volumeMounts" . | trim | nindent 12 }} {{- range $hook, $shell := .Values.nextcloud.hooks }} {{- if $shell }} From 88c2bf4a21c0034554136f05e470a8db54c353af Mon Sep 17 00:00:00 2001 From: esulzickis Date: Sat, 15 Aug 2026 08:20:14 +0200 Subject: [PATCH 2/2] fix: Mount the writable emptyDir file into the nextcloud container directly Signed-off-by: esulzickis --- charts/nextcloud/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index cf4ac578..52f80376 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 9.2.5 +version: 9.2.6 # renovate: image=docker.io/library/nextcloud appVersion: 34.0.2 description: A file sharing server that puts the control and security of your own data back into your hands.