From d95144bd05393340871b3cc282ad52d3ea281af6 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Thu, 19 Mar 2026 22:50:36 +0000 Subject: [PATCH] =?UTF-8?q?fix(immich):=20bump=20postgres=20memory=20512Mi?= =?UTF-8?q?=20=E2=86=92=201Gi=20for=20v2.6.1=20geodata=20migration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v2.6.1 bulk-inserts into geodata_places on first boot, OOM-killing postgres at 512Mi. Raise to 1Gi to accommodate the migration. --- stacks/immich/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/immich/main.tf b/stacks/immich/main.tf index 91c58830..34c7bb29 100644 --- a/stacks/immich/main.tf +++ b/stacks/immich/main.tf @@ -431,10 +431,10 @@ resource "kubernetes_deployment" "immich-postgres" { resources { requests = { cpu = "50m" - memory = "512Mi" + memory = "1Gi" } limits = { - memory = "512Mi" + memory = "1Gi" } } }