fix(dbaas,actualbudget): apply OOM fixes — sync live cluster with Terraform code

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) <noreply@anthropic.com>
This commit is contained in:
Viktor Barzin 2026-03-17 16:46:41 +00:00
parent 8154103ac4
commit d7e25cb675
3 changed files with 11 additions and 11 deletions

View file

@ -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
}

View file

@ -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
}

View file

@ -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
}