fix(actualbudget): raise http-api resources to prevent OOM [ci skip]

This commit is contained in:
Viktor Barzin 2026-03-07 00:28:02 +00:00
parent 7d68be870d
commit b73b2eac33
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -140,6 +140,16 @@ resource "kubernetes_deployment" "actualbudget-http-api" {
container {
image = "jhonderson/actual-http-api:latest"
name = "actualbudget"
resources {
requests = {
cpu = "50m"
memory = "128Mi"
}
limits = {
cpu = "500m"
memory = "512Mi"
}
}
port {
container_port = 5007