fix priority-pass: bump backend memory to 512Mi (OOM with OpenCV)

This commit is contained in:
Viktor Barzin 2026-03-23 00:58:39 +02:00
parent 0674d6e538
commit e9919d8fc9

View file

@ -77,11 +77,11 @@ resource "kubernetes_deployment" "priority-pass" {
}
resources {
limits = {
memory = "256Mi"
memory = "512Mi"
}
requests = {
cpu = "10m"
memory = "256Mi"
memory = "512Mi"
}
}
}