From d3b022d646418dddebec65cdc320c98b2d6b1816 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 updates the README push note. Claude-Session: https://claude.ai/code/session_015ur3i7D2azsMAWTSVABApv --- .woodpecker/build.yaml | 2 +- .woodpecker/docker.yaml | 7 ++----- README.md | 3 ++- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 3d7c5f7..74459bd 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -5,6 +5,6 @@ steps: - name: docker-build-operator image: woodpeckerci/plugin-docker-buildx settings: - repo: git.unkin.net/unkin/cephrgw-operator + repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/cephrgw-operator dockerfile: Dockerfile.operator dry_run: true diff --git a/.woodpecker/docker.yaml b/.woodpecker/docker.yaml index 00fbdb3..0ce729f 100644 --- a/.woodpecker/docker.yaml +++ b/.woodpecker/docker.yaml @@ -6,12 +6,9 @@ steps: - name: docker-operator image: woodpeckerci/plugin-docker-buildx settings: - registry: git.unkin.net - repo: git.unkin.net/unkin/cephrgw-operator + registry: artifactapi.k8s.syd1.au.unkin.net + repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/cephrgw-operator dockerfile: Dockerfile.operator - username: droneci - password: - from_secret: DRONECI_PASSWORD tags: - ${CI_COMMIT_TAG} - latest diff --git a/README.md b/README.md index 04cd2c3..5d88720 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,8 @@ kubectl apply -f hack/kind/manifests/ # edit the Secret first Woodpecker runs `pre-commit` (gofmt + vet), `test`, and a dry-run image `build` on pull requests; pushing a `v*` tag builds and pushes -`git.unkin.net/unkin/cephrgw-operator` to the Gitea registry. Bump a release +`artifactapi.k8s.syd1.au.unkin.net/docker-internal/cephrgw-operator` to the +artifactapi local docker registry. Bump a release with `make patch|minor|major`. ## Notes & caveats