From b1637d04d25c81dcf3b2bc753f6c36b05ade73c4 Mon Sep 17 00:00:00 2001 From: tegwick Date: Tue, 11 Aug 2026 23:18:37 +0200 Subject: [PATCH] Fix core-hub Makefile image repository default too CORE_HUB_IMAGE_REPOSITORY was the only one of four app image defaults still on gitea.coulomb.social. It is passed as --set image.repository= when a tag is supplied, so it overrides helm/core-hub-values.yaml at deploy time - fixing the values file alone would have left the actual deploy path pointing at the frozen CoulombCore registry. Co-Authored-By: Claude Opus 5 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 52d919b..21d2b9f 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ CORE_HUB_CHART ?= charts/core-hub CORE_HUB_VALUES ?= helm/core-hub-values.yaml CORE_HUB_STAGING_NAMESPACE ?= core-hub-staging CORE_HUB_STAGING_VALUES ?= helm/core-hub-staging-values.yaml -CORE_HUB_IMAGE_REPOSITORY ?= gitea.coulomb.social/coulomb/core-hub +CORE_HUB_IMAGE_REPOSITORY ?= forgejo.coulomb.social/coulomb/core-hub CORE_HUB_IMAGE_TAG ?= CORE_HUB_BASE_URL ?= https://hub.coulomb.social CORE_HUB_KUBECONFIG ?= $(PRODUCTION_KUBECONFIG)