Repoint registry.breakpilot.com -> repo.breakpilot.com (Harbor) #13

Merged
sharang merged 1 commits from chore/registry-to-harbor into main 2026-08-09 21:22:12 +00:00
2 changed files with 7 additions and 7 deletions
Showing only changes of commit 84a601b9fd - Show all commits
+4 -4
View File
@@ -101,7 +101,7 @@ jobs:
- uses: docker/login-action@v3 - uses: docker/login-action@v3
with: with:
registry: registry.breakpilot.com registry: repo.breakpilot.com
username: ${{ secrets.REGISTRY_USER }} username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASS }} password: ${{ secrets.REGISTRY_PASS }}
@@ -109,12 +109,12 @@ jobs:
with: with:
push: true push: true
tags: | tags: |
registry.breakpilot.com/${{ github.event.repository.name }}:sha-${{ github.sha }} repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:sha-${{ github.sha }}
registry.breakpilot.com/${{ github.event.repository.name }}:env-stage repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:env-stage
- uses: anchore/sbom-action@v0 - uses: anchore/sbom-action@v0
with: with:
image: registry.breakpilot.com/${{ github.event.repository.name }}:sha-${{ github.sha }} image: repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:sha-${{ github.sha }}
- name: orca deploy stage - name: orca deploy stage
run: orca apply --env=stage --image-tag=sha-${{ github.sha }} run: orca apply --env=stage --image-tag=sha-${{ github.sha }}
+3 -3
View File
@@ -22,7 +22,7 @@ jobs:
- name: verify stage soak (>= 24h on this image) - name: verify stage soak (>= 24h on this image)
run: | run: |
IMG=registry.breakpilot.com/${{ github.event.repository.name }}:env-stage IMG=repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}:env-stage
SOAK_SECONDS=$(orca image-age --env=stage --image $IMG) SOAK_SECONDS=$(orca image-age --env=stage --image $IMG)
if [ "$SOAK_SECONDS" -lt 86400 ]; then if [ "$SOAK_SECONDS" -lt 86400 ]; then
echo "Stage soak only $SOAK_SECONDS s, < 24h. Aborting." echo "Stage soak only $SOAK_SECONDS s, < 24h. Aborting."
@@ -34,12 +34,12 @@ jobs:
- name: re-tag image as semver + env-prod - name: re-tag image as semver + env-prod
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: registry.breakpilot.com registry: repo.breakpilot.com
username: ${{ secrets.REGISTRY_USER }} username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASS }} password: ${{ secrets.REGISTRY_PASS }}
- run: | - run: |
IMG=registry.breakpilot.com/${{ github.event.repository.name }} IMG=repo.breakpilot.com/breakpilot/${{ github.event.repository.name }}
docker pull $IMG:env-stage docker pull $IMG:env-stage
docker tag $IMG:env-stage $IMG:v${{ steps.v.outputs.version }} docker tag $IMG:env-stage $IMG:v${{ steps.v.outputs.version }}
docker tag $IMG:env-stage $IMG:env-prod docker tag $IMG:env-stage $IMG:env-prod