From c6beefc845b6b78fd3416e26d4ff370c403d10d2 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 28 Feb 2026 16:26:19 +0000 Subject: [PATCH] [ci skip] nextcloud: increase resource limits to prevent OOM crash loop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Default LimitRange (256Mi) was too low — pod was using 227Mi/256Mi and getting OOM killed under sync client load, causing 500s and blank web UI. --- stacks/nextcloud/chart_values.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/stacks/nextcloud/chart_values.yaml b/stacks/nextcloud/chart_values.yaml index 2825c518..7bccdc16 100644 --- a/stacks/nextcloud/chart_values.yaml +++ b/stacks/nextcloud/chart_values.yaml @@ -61,5 +61,13 @@ podAnnotations: collabora: enabled: false # Using onlyoffice instead +resources: + limits: + cpu: "2" + memory: 1Gi + requests: + cpu: 100m + memory: 256Mi + cronjob: enabled: true