fix(immich): bump postgres memory 512Mi → 1Gi for v2.6.1 geodata migration

v2.6.1 bulk-inserts into geodata_places on first boot, OOM-killing
postgres at 512Mi. Raise to 1Gi to accommodate the migration.
This commit is contained in:
Viktor Barzin 2026-03-19 22:50:36 +00:00
parent 89bb74c4ee
commit d95144bd05

View file

@ -431,10 +431,10 @@ resource "kubernetes_deployment" "immich-postgres" {
resources {
requests = {
cpu = "50m"
memory = "512Mi"
memory = "1Gi"
}
limits = {
memory = "512Mi"
memory = "1Gi"
}
}
}