52 lines
1.8 KiB
YAML
52 lines
1.8 KiB
YAML
name: sync images
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
pull_request:
|
|
push:
|
|
paths:
|
|
- 'charts'
|
|
- '.github/workflows/sync-images.yaml'
|
|
workflow_dispatch:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sync-images:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Initialization environment
|
|
env:
|
|
PASSWORD: ${{ secrets.HELM_REPO_PASSWORD }}
|
|
shell: bash
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install git -y
|
|
echo "$PASSWORD" | docker login --username=admin --password-stdin harbor.onwalk.net
|
|
|
|
- name: sync images
|
|
shell: bash
|
|
run: |
|
|
function sync_image()
|
|
{
|
|
local src_image=$1
|
|
local dest_image=$2
|
|
docker pull $src_image
|
|
docker tag $src_image $dest_image
|
|
docker push $dest_image
|
|
}
|
|
sync_image "rancher/mirrored-pause:3.6" "harbor.onwalk.net/public/rancher/mirrored-pause:3.6"
|
|
sync_image "rancher/mirrored-metrics-server:v0.6.2" "harbor.onwalk.net/public/rancher/mirrored-metrics-server:v0.6.2"
|
|
sync_image "rancher/mirrored-coredns-coredns:1.10.1" "harbor.onwalk.net/public/rancher/mirrored-coredns-coredns:1.10.1"
|
|
sync_image "hashicorp/vault:1.16.1" "harbor.onwalk.net/public/hashicorp/vault:1.16.1"
|
|
sync_image "hashicorp/vault-k8s:1.4.1" "harbor.onwalk.net/public/hashicorp/vault-k8s:1.4.1"
|
|
sync_image "nginx:1.16.0" "harbor.onwalk.net/public/nginx:1.16.0"
|
|
sync_image "busybox:1.28" "harbor.onwalk.net/public/busybox:1.28"
|
|
sync_image "bpatrik/pigallery2:latest" "harbor.onwalk.net/public/pigallery2:latest"
|
|
sync_image "photoprism/photoprism:latest" "harbor.onwalk.net/public/photoprism:latest"
|
|
sync_image "bitnami/external-dns:0.14.0-debian-11-r4" "harbor.onwalk.net/public/bitnami/external-dns:0.14.0-debian-11-r4"
|