From 9c01cbe09da8d5519ad225760828c4c197845b8d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 22 Mar 2026 13:59:42 +0200 Subject: fix: correct NFS sentinel filename in immich-postgres init container The wait-for-nfs init container was checking for nfs.DO_NOT_REMOVE but the actual file on disk is k3svolumes.DO_NOT_REMOVE. This caused every new pod from the rolling update to be permanently stuck in Init:0/1, leaving two postgres pods running indefinitely (old + stuck new). --- f3s/immich/helm-chart/templates/postgres.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'f3s') diff --git a/f3s/immich/helm-chart/templates/postgres.yaml b/f3s/immich/helm-chart/templates/postgres.yaml index 9a33ed1..58ae7df 100644 --- a/f3s/immich/helm-chart/templates/postgres.yaml +++ b/f3s/immich/helm-chart/templates/postgres.yaml @@ -23,7 +23,7 @@ spec: - -c - | echo "Waiting for NFS mount..." - until [ -f /nfs-check/nfs.DO_NOT_REMOVE ]; do + until [ -f /nfs-check/k3svolumes.DO_NOT_REMOVE ]; do echo "NFS not mounted yet, waiting..." sleep 5 done -- cgit v1.2.3