From 5ac4c453b8ccebfbba00bead6564e46a717c997b Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 14 Jun 2026 15:00:59 +0200 Subject: [PATCH] fix(deploy): use reachable gitea registry host --- .gitea/workflows/deploy.yaml | 10 ++++------ deploy/helm/inter-hub/values.yaml | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index d335a95..715ccc4 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -29,14 +29,12 @@ jobs: run: | SHA=$(git rev-parse --short HEAD) skopeo copy docker-archive:result \ - "docker://92.205.130.254:32166/coulomb/inter-hub:${SHA}" \ - --dest-creds "tegwick:${GITEA_TOKEN}" \ - --dest-tls-verify=false + "docker://gitea.coulomb.social/coulomb/inter-hub:${SHA}" \ + --dest-creds "tegwick:${GITEA_TOKEN}" # Also tag as latest skopeo copy docker-archive:result \ - "docker://92.205.130.254:32166/coulomb/inter-hub:latest" \ - --dest-creds "tegwick:${GITEA_TOKEN}" \ - --dest-tls-verify=false + "docker://gitea.coulomb.social/coulomb/inter-hub:latest" \ + --dest-creds "tegwick:${GITEA_TOKEN}" echo "Pushed inter-hub:${SHA} and inter-hub:latest" - name: Deploy to Railiance01 diff --git a/deploy/helm/inter-hub/values.yaml b/deploy/helm/inter-hub/values.yaml index 78e1d03..19659d1 100644 --- a/deploy/helm/inter-hub/values.yaml +++ b/deploy/helm/inter-hub/values.yaml @@ -1,7 +1,7 @@ replicaCount: 1 image: - repository: 92.205.130.254:32166/coulomb/inter-hub + repository: gitea.coulomb.social/coulomb/inter-hub tag: "latest" pullPolicy: IfNotPresent