-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add script and action to sync repositories
Signed-off-by: Dominik Rosiek <[email protected]>
- Loading branch information
Dominik Rosiek
committed
Apr 22, 2024
1 parent
e7f3989
commit 14ce8e8
Showing
4 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Sync Repositories | ||
|
||
on: | ||
push: | ||
branches: | ||
- drosiek-sync-container-repositories | ||
|
||
jobs: | ||
sync-repositories: | ||
strategy: | ||
matrix: | ||
include: | ||
- docker_username: DOCKERHUB_LOGIN_KUBE_RBAC_PROXY | ||
docker_password: DOCKERHUB_PASSWORD_KUBE_RBAC_PROXY | ||
aws_access_key: AWS_ACCESS_KEY_ID_KUBE_RBAC_PROXY | ||
aws_secret_access_key: AWS_SECRET_ACCESS_KEY_KUBE_RBAC_PROXY | ||
src_repository: quay.io/brancz/kube-rbac-proxy | ||
dest_docker_namespace: docker.io/sumologic | ||
dest_ecr_namespace: public.ecr.aws/a4t4y2n3 | ||
uses: ./.github/workflows/workflow-sync-repositories.yaml | ||
with: | ||
src_repository: ${{ matrix.src_repository }} | ||
dest_docker_namespace: ${{ matrix.dest_docker_namespace }} | ||
dest_ecr_namespace: ${{ matrix.dest_ecr_namespace }} | ||
secrets: | ||
DOCKER_USERNAME: ${{ secrets[matrix.docker_username] }} | ||
DOCKER_PASSWORD: ${{ secrets[matrix.docker_password] }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets[matrix.aws_access_key] }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets[matrix.aws_secret_access_key] }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Sync container repository | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
src_repository: | ||
description: Source repository | ||
required: true | ||
type: string | ||
dest_docker_namespace: | ||
description: Destination DockerHub repository | ||
required: true | ||
type: string | ||
dest_ecr_namespace: | ||
description: Destination ECR repository | ||
required: true | ||
type: string | ||
secrets: | ||
DOCKER_USERNAME: | ||
required: true | ||
DOCKER_PASSWORD: | ||
required: true | ||
AWS_ACCESS_KEY_ID: | ||
required: true | ||
AWS_SECRET_ACCESS_KEY: | ||
required: true | ||
|
||
jobs: | ||
build-and-push-image: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install skopeo | ||
run: sudo apt-get install skopeo -y | ||
- name: Login to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Synchronize image to Docker Hub repository | ||
run: ./ci/sync-repository.sh ${{ inputs.src_repository }} ${{ inputs.dest_docker_namespace }} | ||
- name: Login to ECR | ||
run: make login-ecr | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
- name: Synchronize image to ECR repository | ||
run: ./ci/sync-repository.sh ${{ inputs.src_repository }} ${{ inputs.dest_ecr_namespace }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/bash | ||
|
||
SRC_REPOSITORY=${1} | ||
DESTINATION_NAMESPACE=${2} | ||
skopeo --insecure-policy sync --src ${SRC_REPOSITORY} --dest docker ${DESTINATION_NAMESPACE} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters