From f46a3f4bcbce7ab9c6bdbabee01e7256ccd2b97f Mon Sep 17 00:00:00 2001 From: unkin-agent Date: Sun, 23 Aug 2026 21:54:35 +1000 Subject: [PATCH] arrstack: raise arrstack-postgres resources after OOMKills Both replicas OOMKilled at the 1Gi limit on 2026-08-23, causing a failover and a stuck replica. Raise requests to 1Gi/250m and limits to 2Gi/1 cpu. --- apps/base/arrstack/postgres/cnpg_cluster.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/base/arrstack/postgres/cnpg_cluster.yaml b/apps/base/arrstack/postgres/cnpg_cluster.yaml index a27ded6..5d9fd62 100644 --- a/apps/base/arrstack/postgres/cnpg_cluster.yaml +++ b/apps/base/arrstack/postgres/cnpg_cluster.yaml @@ -147,10 +147,10 @@ spec: resources: limits: cpu: "1" - memory: 1Gi + memory: 2Gi requests: - cpu: 50m - memory: 512Mi + cpu: 250m + memory: 1Gi smartShutdownTimeout: 180 startDelay: 3600 stopDelay: 1800