From cd29e2996b2767a444a8047f0b3a39474b1aa1ba Mon Sep 17 00:00:00 2001 From: Abubakarr Kamara <72503671+Abubakarr99@users.noreply.github.com> Date: Thu, 27 Jul 2023 10:06:20 +0000 Subject: [PATCH 1/3] PTFE-659: migrate registry bert-e --- charts/bert-e/values.yaml | 4 ++-- manifests/base/kustomization.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/bert-e/values.yaml b/charts/bert-e/values.yaml index 9053d051..393f9769 100644 --- a/charts/bert-e/values.yaml +++ b/charts/bert-e/values.yaml @@ -277,11 +277,11 @@ bertE: image: ## regitry to pull from. ## - registry: registry.scality.com + registry: ghcr.io ## repository on the registry to pull from. ## - repository: bert-e/bert-e + repository: bert-e ## tag specifies the version of Bert-E to deploy. ## diff --git a/manifests/base/kustomization.yaml b/manifests/base/kustomization.yaml index 005eb44e..fd59b147 100644 --- a/manifests/base/kustomization.yaml +++ b/manifests/base/kustomization.yaml @@ -17,7 +17,7 @@ configMapGenerator: images: - name: bert-e - newName: 'registry.scality.com/bert-e/bert-e' + newName: 'ghcr.io/bert-e' newTag: '3.6.23' resources: From a5cbaeee3d04d7bac2fbd5d7358003db1ec6fe1c Mon Sep 17 00:00:00 2001 From: Abubakarr Kamara <72503671+Abubakarr99@users.noreply.github.com> Date: Thu, 27 Jul 2023 10:11:13 +0000 Subject: [PATCH 2/3] PTFE-659: corrected the path to registry --- charts/bert-e/values.yaml | 2 +- manifests/base/kustomization.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/bert-e/values.yaml b/charts/bert-e/values.yaml index 393f9769..12814cdd 100644 --- a/charts/bert-e/values.yaml +++ b/charts/bert-e/values.yaml @@ -277,7 +277,7 @@ bertE: image: ## regitry to pull from. ## - registry: ghcr.io + registry: ghcr.io/scality ## repository on the registry to pull from. ## diff --git a/manifests/base/kustomization.yaml b/manifests/base/kustomization.yaml index fd59b147..7af26c33 100644 --- a/manifests/base/kustomization.yaml +++ b/manifests/base/kustomization.yaml @@ -17,7 +17,7 @@ configMapGenerator: images: - name: bert-e - newName: 'ghcr.io/bert-e' + newName: 'ghcr.io/scality/bert-e' newTag: '3.6.23' resources: From f18c75faab2b2582d284335783fdbd259f273e53 Mon Sep 17 00:00:00 2001 From: Abubakarr Kamara <72503671+Abubakarr99@users.noreply.github.com> Date: Fri, 28 Jul 2023 12:58:07 +0000 Subject: [PATCH 3/3] PTFE-659: remove registry.scality.com for release --- .github/workflows/release.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b31e5765..22745fb1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,13 +26,6 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Login to Scality Registry - uses: docker/login-action@v1 - with: - registry: registry.scality.com - username: ${{ secrets.REGISTRY_LOGIN }} - password: ${{ secrets.REGISTRY_PASSWORD }} - - name: Build and push uses: docker/build-push-action@v2 with: @@ -43,7 +36,6 @@ jobs: VERSION=${{ github.event.inputs.tag }} tags: | ghcr.io/scality/bert-e:${{ inputs.tag }} - registry.scality.com/bert-e/bert-e:${{ inputs.tag }} - name: Create Release uses: softprops/action-gh-release@v1