fix(actualbudget): raise http-api resources to prevent OOM [ci skip]
This commit is contained in:
parent
7d68be870d
commit
b73b2eac33
1 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue