From 52c986b859607ede0df1b9d0267950d635cc1ee4 Mon Sep 17 00:00:00 2001 From: Nathanial Lubitz Date: Mon, 29 Jun 2026 17:16:44 +1000 Subject: [PATCH] update registry url --- .gitea/workflows/deploy.yml | 6 +++--- .gitea/workflows/publish.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6a4c8f7..0fd47a3 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -14,11 +14,11 @@ jobs: - name: Login to registry uses: docker/login-action@v2 with: - registry: registry.natelubitz.com + registry: registry.container-registry.svc.cluster.local:5000 username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push action image run: | - docker build -t registry.natelubitz.com/infra/kforge:latest . - docker push registry.natelubitz.com/infra/kforge:latest + docker build -t registry.container-registry.svc.cluster.local:5000/infra/kforge:latest . + docker push registry.container-registry.svc.cluster.local:5000/infra/kforge:latest diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index d82b0f0..af4e4f4 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: - name: Login to registry uses: docker/login-action@v2 with: - registry: registry.natelubitz.com + registry: registry.container-registry.svc.cluster.local:5000 username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -32,7 +32,7 @@ jobs: platforms: linux/amd64 push: true tags: | - registry.natelubitz.com/infra/kforge:latest - registry.natelubitz.com/infra/kforge:${{ gitea.sha }} + registry.container-registry.svc.cluster.local:5000/infra/kforge:latest + registry.container-registry.svc.cluster.local:5000/infra/kforge:${{ gitea.sha }} provenance: false sbom: false