From af44fe498f699fcf045ae4c1f6e010e986f5d918 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Thu, 30 Jul 2026 00:34:59 +1000 Subject: [PATCH] ci: push images to artifactapi registry instead of gitea Hard switch of the docker push target from the Gitea registry to the artifactapi local docker registry (docker-internal); the Gitea VM and its registry are being retired. Drops the droneci/DRONECI_PASSWORD creds since artifactapi accepts unauthenticated in-cluster pushes. Also repoints the Dockerfile FROM agent-base base image. Claude-Session: https://claude.ai/code/session_015ur3i7D2azsMAWTSVABApv --- .woodpecker/build.yaml | 2 +- .woodpecker/docker.yaml | 7 ++----- Dockerfile | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index fa7f444..ad045ad 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -5,5 +5,5 @@ steps: - name: docker-build image: woodpeckerci/plugin-docker-buildx settings: - repo: git.unkin.net/unkin/agent-infra + repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/agent-infra dry_run: true diff --git a/.woodpecker/docker.yaml b/.woodpecker/docker.yaml index b84ce42..6cb19f9 100644 --- a/.woodpecker/docker.yaml +++ b/.woodpecker/docker.yaml @@ -6,11 +6,8 @@ steps: - name: docker image: woodpeckerci/plugin-docker-buildx settings: - registry: git.unkin.net - repo: git.unkin.net/unkin/agent-infra - username: droneci - password: - from_secret: DRONECI_PASSWORD + registry: artifactapi.k8s.syd1.au.unkin.net + repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/agent-infra tags: - ${CI_COMMIT_TAG} - latest diff --git a/Dockerfile b/Dockerfile index 8eef715..110e205 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM git.unkin.net/unkin/agent-base:latest +FROM artifactapi.k8s.syd1.au.unkin.net/docker-internal/agent-base:latest USER root