From d635bc0b5060d2b4d8b5b4f6943dae3c3d4836f3 Mon Sep 17 00:00:00 2001 From: The Dogfather Date: Fri, 27 Mar 2026 13:23:57 +0000 Subject: [PATCH] fix(ci): use correct postgres secret name for dev deploy The deploy-dev job referenced `groombook-postgres-credentials` but the groombook-dev namespace only has `groombook-postgres-credentials-dev`. This caused all PR migration jobs to fail with CreateContainerConfigError. Fixes GRO-66 deploy blocker. Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fd9f1c..935ab67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -233,7 +233,7 @@ jobs: - name: DATABASE_URL valueFrom: secretKeyRef: - name: groombook-postgres-credentials + name: groombook-postgres-credentials-dev key: uri EOF kubectl wait --for=condition=complete "job/migrate-pr-$PR_NUM" \ -- 2.52.0