From 21cfa8c07231f31d745bdf9ccfa131d86fa5e398 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 21 Mar 2026 11:12:12 +0000 Subject: [PATCH] bump memory limits for OOM-prone services MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit FreshRSS: 64Mi → 256Mi (171 restarts, VPA upper ~204Mi) Actual Budget HTTP API: 128Mi → 384Mi (17 restarts, VPA upper ~297Mi) n8n: 768Mi → 1Gi (18 restarts, VPA upper ~765Mi) Dawarich: 768Mi → 896Mi (2 restarts, VPA upper ~628Mi) Traefik: 384Mi → 768Mi (2 restarts, VPA upper ~584Mi) --- stacks/actualbudget/factory/main.tf | 4 ++-- stacks/dawarich/main.tf | 4 ++-- stacks/freshrss/main.tf | 4 ++-- stacks/n8n/main.tf | 4 ++-- stacks/traefik/modules/traefik/main.tf | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/stacks/actualbudget/factory/main.tf b/stacks/actualbudget/factory/main.tf index 93edaf15..95663e4d 100644 --- a/stacks/actualbudget/factory/main.tf +++ b/stacks/actualbudget/factory/main.tf @@ -149,10 +149,10 @@ resource "kubernetes_deployment" "actualbudget-http-api" { resources { requests = { cpu = "50m" - memory = "128Mi" + memory = "384Mi" } limits = { - memory = "128Mi" + memory = "384Mi" } } diff --git a/stacks/dawarich/main.tf b/stacks/dawarich/main.tf index 8b84a75d..34c3ed94 100644 --- a/stacks/dawarich/main.tf +++ b/stacks/dawarich/main.tf @@ -176,10 +176,10 @@ resource "kubernetes_deployment" "dawarich" { resources { requests = { cpu = "15m" - memory = "768Mi" + memory = "896Mi" } limits = { - memory = "768Mi" + memory = "896Mi" } } } diff --git a/stacks/freshrss/main.tf b/stacks/freshrss/main.tf index f800e58a..4cef01dd 100644 --- a/stacks/freshrss/main.tf +++ b/stacks/freshrss/main.tf @@ -134,10 +134,10 @@ resource "kubernetes_deployment" "freshrss" { resources { requests = { cpu = "15m" - memory = "64Mi" + memory = "256Mi" } limits = { - memory = "64Mi" + memory = "256Mi" } } } diff --git a/stacks/n8n/main.tf b/stacks/n8n/main.tf index ea43d762..8045c334 100644 --- a/stacks/n8n/main.tf +++ b/stacks/n8n/main.tf @@ -196,10 +196,10 @@ resource "kubernetes_deployment" "n8n" { resources { requests = { cpu = "25m" - memory = "512Mi" + memory = "1Gi" } limits = { - memory = "768Mi" + memory = "1Gi" } } } diff --git a/stacks/traefik/modules/traefik/main.tf b/stacks/traefik/modules/traefik/main.tf index 6428322c..3310e20a 100644 --- a/stacks/traefik/modules/traefik/main.tf +++ b/stacks/traefik/modules/traefik/main.tf @@ -201,10 +201,10 @@ resource "helm_release" "traefik" { resources = { requests = { cpu = "100m" - memory = "384Mi" + memory = "768Mi" } limits = { - memory = "384Mi" + memory = "768Mi" } }