From eb0301b02b6638a7c4c50835df1fc374b5dbf4ea Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 14 Mar 2026 21:15:26 +0000 Subject: [PATCH] lower memory limits closer to actual usage openclaw: 1536Mi -> 768Mi, affine: 256Mi -> 128Mi, rybbit: 512Mi -> 384Mi. Also patched via kubectl: aiostreams, cloudflared, crowdsec, uptime-kuma, vaultwarden, pgadmin, phpmyadmin, goflow2, sealed-secrets, ebook2audiobook. --- stacks/affine/main.tf | 8 ++++---- stacks/openclaw/main.tf | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/stacks/affine/main.tf b/stacks/affine/main.tf index 6a47b6ae..38e3692a 100644 --- a/stacks/affine/main.tf +++ b/stacks/affine/main.tf @@ -141,10 +141,10 @@ resource "kubernetes_deployment" "affine" { resources { requests = { cpu = "50m" - memory = "256Mi" + memory = "128Mi" } limits = { - memory = "256Mi" + memory = "128Mi" } } } @@ -178,11 +178,11 @@ resource "kubernetes_deployment" "affine" { resources { requests = { - memory = "256Mi" + memory = "128Mi" cpu = "50m" } limits = { - memory = "256Mi" + memory = "128Mi" } } diff --git a/stacks/openclaw/main.tf b/stacks/openclaw/main.tf index c83675ff..a4e83f27 100644 --- a/stacks/openclaw/main.tf +++ b/stacks/openclaw/main.tf @@ -599,11 +599,11 @@ resource "kubernetes_deployment" "openclaw" { } resources { limits = { - memory = "1536Mi" + memory = "768Mi" } requests = { cpu = "100m" - memory = "1536Mi" + memory = "768Mi" } } }