fix(actualbudget): raise http-api resources to prevent OOM [ci skip]
This commit is contained in:
parent
197cef7f3f
commit
5b28319bc3
1 changed files with 10 additions and 0 deletions
|
|
@ -140,6 +140,16 @@ resource "kubernetes_deployment" "actualbudget-http-api" {
|
||||||
container {
|
container {
|
||||||
image = "jhonderson/actual-http-api:latest"
|
image = "jhonderson/actual-http-api:latest"
|
||||||
name = "actualbudget"
|
name = "actualbudget"
|
||||||
|
resources {
|
||||||
|
requests = {
|
||||||
|
cpu = "50m"
|
||||||
|
memory = "128Mi"
|
||||||
|
}
|
||||||
|
limits = {
|
||||||
|
cpu = "500m"
|
||||||
|
memory = "512Mi"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
port {
|
port {
|
||||||
container_port = 5007
|
container_port = 5007
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue