From fcb7d6780ecd8071457b66101fceebf3258aea98 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 28 Feb 2026 23:32:28 +0000 Subject: [PATCH] [ci skip] fix nextcloud: increase memory to 4Gi, extend startup probe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Memory limit: 2Gi → 4Gi (VPA target is 2.8Gi, was OOMKilling) - Memory request: 512Mi → 1Gi - Startup probe: 30s delay, 10s timeout, 60 failures (10min total) Previous 5min window was too short for NFS-backed SQLite init --- stacks/nextcloud/chart_values.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stacks/nextcloud/chart_values.yaml b/stacks/nextcloud/chart_values.yaml index 16bd00d7..61b8245d 100644 --- a/stacks/nextcloud/chart_values.yaml +++ b/stacks/nextcloud/chart_values.yaml @@ -48,10 +48,10 @@ persistence: startupProbe: enabled: true - initialDelaySeconds: 10 + initialDelaySeconds: 30 periodSeconds: 10 - timeoutSeconds: 5 - failureThreshold: 30 + timeoutSeconds: 10 + failureThreshold: 60 successThreshold: 1 podAnnotations: @@ -64,10 +64,10 @@ collabora: resources: limits: cpu: "2" - memory: 2Gi + memory: 4Gi requests: cpu: 100m - memory: 512Mi + memory: 1Gi cronjob: enabled: true