Skip to content

Commit

Permalink
chore: add script and action to sync repositories
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
  • Loading branch information
sumo-drosiek committed Apr 22, 2024
1 parent e7f3989 commit c698d36
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/sync-repositories.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Dev builds

on:
push:
branches:
- drosiek-sync-container-repositories

jobs:
sync-repositories:
strategy:
matrix:
include:
- docker_username: DOCKERHUB_LOGIN_BUSYBOX
docker_password: DOCKERHUB_PASSWORD_BUSYBOX
aws_access_key: AWS_ACCESS_KEY_ID_BUSYBOX
aws_secret_access_key: AWS_SECRET_ACCESS_KEY_BUSYBOX
src_repository: docker.io/busybox
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] }}
48 changes: 48 additions & 0 deletions .github/workflows/workflow-sync-repositories.yaml
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 skopep
run: apt-get install skopeo
- name: Login to Docker Hub
uses: docker/login-action@v3.1.0
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 }}
5 changes: 5 additions & 0 deletions ci/sync-repository.sh
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}
1 change: 1 addition & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ pkgs.mkShell {
pkgs.golangci-lint
pkgs.go
pkgs.kind
pkgs.skopeo
];
}
## Output of `make tool-versions`:
Expand Down

0 comments on commit c698d36

Please sign in to comment.