summaryrefslogtreecommitdiff
path: root/f3s/immich
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-22 13:59:42 +0200
committerPaul Buetow <paul@buetow.org>2026-03-22 13:59:42 +0200
commit9c01cbe09da8d5519ad225760828c4c197845b8d (patch)
tree490fd67b507c7ee31183590f4b9a2193a5af3514 /f3s/immich
parent4699b6a5833cf32c6817dd9800437e53223ad5e6 (diff)
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).
Diffstat (limited to 'f3s/immich')
-rw-r--r--f3s/immich/helm-chart/templates/postgres.yaml2
1 files changed, 1 insertions, 1 deletions
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