From 2b01e7c5f3dfaa5cbccafa6e3fdba3aeb0589f42 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Tue, 25 Aug 2026 18:50:09 -0700 Subject: [PATCH] fix: add cube+earthdistance to postInitApplicationSQL, immich needs them for geo queries --- k8s/apps/immich/db.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/k8s/apps/immich/db.yaml b/k8s/apps/immich/db.yaml index 112db47..16dd484 100644 --- a/k8s/apps/immich/db.yaml +++ b/k8s/apps/immich/db.yaml @@ -40,6 +40,8 @@ spec: # manually once (kubectl exec ... psql -U postgres -c 'CREATE EXTENSION'). postInitApplicationSQL: - "CREATE EXTENSION IF NOT EXISTS vector;" + - "CREATE EXTENSION IF NOT EXISTS cube;" + - "CREATE EXTENSION IF NOT EXISTS earthdistance;" enableSuperuserAccess: false resources: requests: { memory: "512Mi", cpu: "250m" }