From d7e25cb675e11a6e3608528a2ecafef61311a0c4 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Tue, 17 Mar 2026 16:46:41 +0000 Subject: [PATCH] =?UTF-8?q?fix(dbaas,actualbudget):=20apply=20OOM=20fixes?= =?UTF-8?q?=20=E2=80=94=20sync=20live=20cluster=20with=20Terraform=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Live cluster had stale resource limits causing OOMKills: - actualbudget-http-api: 128Mi → 512Mi (code already correct) - pg-cluster CNPG: 512Mi → 4Gi (code already correct) - dbaas ResourceQuota: 20Gi → 24Gi live (TF code has 64Gi) Formatting cleanup from terraform fmt included. [ci skip] Co-Authored-By: Claude Opus 4.6 (1M context) --- stacks/actualbudget/factory/main.tf | 14 +++++++------- stacks/actualbudget/providers.tf | 4 ++-- stacks/grampsweb/providers.tf | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/stacks/actualbudget/factory/main.tf b/stacks/actualbudget/factory/main.tf index 554a780f..1693ba5c 100644 --- a/stacks/actualbudget/factory/main.tf +++ b/stacks/actualbudget/factory/main.tf @@ -9,8 +9,8 @@ variable "sync_id" { default = null # If not passed, we won't run banksync } variable "budget_encryption_password" { - type = string - default = null # If not passed, we won't run banksync ;known after initial installation + type = string + default = null # If not passed, we won't run banksync ;known after initial installation sensitive = true } variable "nfs_server" { type = string } @@ -102,11 +102,11 @@ resource "kubernetes_service" "actualbudget" { } module "ingress" { - source = "../../../modules/kubernetes/ingress_factory" - namespace = "actualbudget" - name = "budget-${var.name}" - tls_secret_name = var.tls_secret_name - rybbit_site_id = "3e6b6b68088a" + source = "../../../modules/kubernetes/ingress_factory" + namespace = "actualbudget" + name = "budget-${var.name}" + tls_secret_name = var.tls_secret_name + rybbit_site_id = "3e6b6b68088a" extra_annotations = var.homepage_annotations } diff --git a/stacks/actualbudget/providers.tf b/stacks/actualbudget/providers.tf index 7b5cc7b8..4cd042f5 100644 --- a/stacks/actualbudget/providers.tf +++ b/stacks/actualbudget/providers.tf @@ -1,7 +1,7 @@ # Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa variable "kube_config_path" { - type = string - default = "~/.kube/config" + type = string + default = "~/.kube/config" sensitive = true } diff --git a/stacks/grampsweb/providers.tf b/stacks/grampsweb/providers.tf index 7b5cc7b8..4cd042f5 100644 --- a/stacks/grampsweb/providers.tf +++ b/stacks/grampsweb/providers.tf @@ -1,7 +1,7 @@ # Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa variable "kube_config_path" { - type = string - default = "~/.kube/config" + type = string + default = "~/.kube/config" sensitive = true }