Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MDBF-850 - Backup PROD master tag #660

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 65 additions & 16 deletions .github/workflows/bbm_build_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
build:
runs-on: ubuntu-22.04
name: build
env:
MAIN_BRANCH: false
services:
registry:
image: registry:2
Expand All @@ -24,34 +26,49 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Check Dockerfile with hadolint
run: |
docker run -i -v $(pwd):/mnt -w /mnt ghcr.io/hadolint/hadolint:latest hadolint /mnt/Dockerfile

- name: Enable Production release - no rebuild
run: echo "MAIN_BRANCH=true" >> $GITHUB_ENV
if: github.ref == 'refs/heads/main'

- name: Set up env vars
run: |
echo "REPO=bb-master" >>$GITHUB_ENV

- name: Check Dockerfile with hadolint
if: ${{ env.MAIN_BRANCH == 'false' }}
run: |
docker run -i -v $(pwd):/mnt -w /mnt ghcr.io/hadolint/hadolint:latest hadolint /mnt/Dockerfile

- name: Build master image
if: ${{ env.MAIN_BRANCH == 'false' }}
run: |
podman build . --tag ${{ env.REPO }}:master

- name: Build master-web image
if: ${{ env.MAIN_BRANCH == 'false' }}
run: |
podman build . --tag ${{ env.REPO }}:master-web \
--build-arg master_type=master-web

- name: Push images to local registry
if: ${{ env.MAIN_BRANCH == 'false' }}
run: |
for img in master master-web; do
podman push --tls-verify=0 \
${{ env.REPO }}:$img \
docker://localhost:5000/${{ env.REPO }}:$img
done

- name: Check images
if: ${{ env.MAIN_BRANCH == 'false' }}
run: |
docker run -i localhost:5000/${{ env.REPO }}:master buildbot --version
#//TEMP there is probably a better way for master-web here
docker run -i localhost:5000/${{ env.REPO }}:master-web buildbot --version

- name: Check for registry credentials
if: >
github.ref == 'refs/heads/dev' &&
github.repository == 'MariaDB/buildbot'
run: |
missing=()
Expand All @@ -65,39 +82,71 @@ jobs:
else
echo "Not pushing images to registry"
fi

- name: Login to ghcr.io
if: ${{ env.DEPLOY_IMAGES == 'true' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push images to ghcr.io
if: ${{ env.DEPLOY_IMAGES == 'true' }}

- name: Push DEV images to ghcr.io
if: ${{ env.DEPLOY_IMAGES == 'true' && env.MAIN_BRANCH == 'false' }}
run: |
msg="Push docker images to ghcr.io"
line="${msg//?/=}"
printf "\n${line}\n${msg}\n${line}\n"
for image in master master-web; do
msg="Push docker image to ghcr.io (${image})"
line="${msg//?/=}"
printf "\n${line}\n${msg}\n${line}\n"

skopeo copy --all --src-tls-verify=0 \
docker://localhost:5000/${{ env.REPO }}:${image} \
docker://ghcr.io/mariadb/buildbot:dev_${image}
done

- name: ghcr.io - backup Production tag
if: ${{ env.DEPLOY_IMAGES == 'true' && env.MAIN_BRANCH =='true' }}
run:
for image in master master-web; do
msg="Create backup for ${image} on ghcr.io"
line="${msg//?/=}"
printf "\n${line}\n${msg}\n${line}\n"

skopeo copy --all --src-tls-verify=0 \
docker://ghcr.io/mariadb/buildbot:${image} \
docker://ghcr.io/mariadb/buildbot:previous_${image}
done

- name: Login to quay.io
if: ${{ env.DEPLOY_IMAGES == 'true' }}
uses: docker/login-action@v2
with:
registry: quay.io
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_TOKEN }}
- name: Push images to quay.io
if: ${{ env.DEPLOY_IMAGES == 'true' }}

- name: Push DEV images to quay.io
if: ${{ env.DEPLOY_IMAGES == 'true' && env.MAIN_BRANCH == 'false' }}
run: |
msg="Push docker images to quay.io"
line="${msg//?/=}"
printf "\n${line}\n${msg}\n${line}\n"
for image in master master-web; do
msg="Push docker image to quay.io (${image})"
line="${msg//?/=}"
printf "\n${line}\n${msg}\n${line}\n"

skopeo copy --all --src-tls-verify=0 \
docker://localhost:5000/${{ env.REPO }}:${image} \
docker://quay.io/mariadb-foundation/${{ env.REPO }}:dev_${image}
docker://localhost:5000/${{ env.REPO }}:${image} \
docker://quay.io/mariadb-foundation/${{ env.REPO }}:dev_${image}
done

- name: quay.io - backup Production tag
if: ${{ env.DEPLOY_IMAGES == 'true' && env.MAIN_BRANCH =='true' }}
run:
for image in master master-web; do
msg="Create backup for ${image} on quay.io"
line="${msg//?/=}"
printf "\n${line}\n${msg}\n${line}\n"

skopeo copy --all --src-tls-verify=0 \
docker://quay.io/mariadb-foundation/${{ env.REPO }}:${image} \
docker://quay.io/mariadb-foundation/${{ env.REPO }}:previous_${image}
done