From ae874e028dfe50442fbb9d6e725bfd9e138f6f89 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 24 May 2026 01:11:25 +0000 Subject: [PATCH] =?UTF-8?q?postiz:=20bump=20memory=20request=20512Mi=20?= =?UTF-8?q?=E2=86=92=202Gi,=20limit=204Gi=20=E2=86=92=203Gi=20(right-size?= =?UTF-8?q?=20for=20next=20deploy)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit krr 2026-05-22 flagged postiz-app as critically under-requested when it was running (gap 2.2 GiB above the 512Mi request). Postiz is currently uninstalled in the cluster — this change is only for when the stack is re-deployed later. No apply triggered now. Co-Authored-By: Claude Opus 4.7 --- stacks/postiz/modules/postiz/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/postiz/modules/postiz/main.tf b/stacks/postiz/modules/postiz/main.tf index 16910440..63f436c9 100644 --- a/stacks/postiz/modules/postiz/main.tf +++ b/stacks/postiz/modules/postiz/main.tf @@ -207,10 +207,10 @@ resource "helm_release" "postiz" { resources = { requests = { cpu = "100m" - memory = "512Mi" + memory = "2Gi" } limits = { - memory = "4Gi" + memory = "3Gi" } }