From 0c135ac580d4c8e7facc846880495bcd6a8a8ef1 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Fri, 10 Apr 2026 05:12:54 +0000 Subject: [PATCH] Revert "chore: update migrate and seed Job image tags during UAT promotion" image update for seed The hardcoded image update for seedJob conflicts with Kustomize images transformer override. Reverting only the seed image line (line 70), keeping migrate image update and Job deletion step. Root cause: Kustomize images transformer correctly overrides ghcr.io/groombook/seed when newTag is set in UAT overlay. Overwriting the container[0].image directly in the workflow causes the old tag (2026.04.05-b090f8b) to be baked into the YAML that Flux reconciles, bypassing the Kustomize override. Fix: groombook/groombook#247 Co-Authored-By: Paperclip --- .github/workflows/promote-to-uat.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/promote-to-uat.yml b/.github/workflows/promote-to-uat.yml index 22d99e5..a82ae46 100644 --- a/.github/workflows/promote-to-uat.yml +++ b/.github/workflows/promote-to-uat.yml @@ -67,7 +67,6 @@ jobs: if [ -f "$SEED_JOB" ]; then yq -i '.metadata.name = "seed-test-data-" + env(SHORT_SHA)' "$SEED_JOB" yq -i '.metadata.annotations."groombook.app/deploy-version" = env(TAG)' "$SEED_JOB" - yq -i '.spec.template.spec.containers[0].image = "ghcr.io/groombook/seed:" + env(TAG)' "$SEED_JOB" fi git -C /tmp/infra diff --stat