From 54dfaf6edcd54dc05dadc8caffdf795634d73efa Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Fri, 12 Jun 2026 23:06:54 +0000 Subject: [PATCH] job-hunter: image base forgejo registry -> ghcr (ADR-0002) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CronJobs track :latest via the TF literal (unlike the ignore_changes'd deployment), so they kept pulling the dead Forgejo image after the GHA/ghcr cutover — repoint the stack's image base. Co-Authored-By: Claude Fable 5 --- stacks/job-hunter/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/job-hunter/main.tf b/stacks/job-hunter/main.tf index da256229..9a962674 100644 --- a/stacks/job-hunter/main.tf +++ b/stacks/job-hunter/main.tf @@ -9,7 +9,7 @@ variable "postgresql_host" { type = string } locals { namespace = "job-hunter" # Phase 3 cutover 2026-05-07 — see infra/docs/plans/2026-05-07-forgejo-registry-consolidation-plan.md. - image = "forgejo.viktorbarzin.me/viktor/job-hunter:${var.image_tag}" + image = "ghcr.io/viktorbarzin/job-hunter:${var.image_tag}" labels = { app = "job-hunter" }