Skip to content

Commit

Permalink
Switch to Antrea registry for Flow Visibility related external images
Browse files Browse the repository at this point in the history
Signed-off-by: Yongming Ding <[email protected]>
  • Loading branch information
Yongming Ding committed Mar 24, 2022
1 parent a1a7924 commit a4c879b
Show file tree
Hide file tree
Showing 7 changed files with 3,817 additions and 8 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/docker_update_flow_visibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Anyone with write permissions to the antrea-io/antrea Github repository can
# trigger this workflow manually, but please check with a maintainer first. The
# workflow will tag and push flow visibility related external images into Antrea
# Docker hub.
name: Manually update flow visibility Docker images

on:
workflow_dispatch:
inputs:
ch-operator-tag:
description: 'Tag for clickhouse-operator and metrics-exporter Docker image'
required: true
grafana-tag:
description: 'Tag for grafana'
required: true
ch-server-tag:
description: 'Tag for clickhouse-server'
required: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push antrea/flow-visibility-clickhouse-operator
uses: akhilerm/[email protected]
with:
src: docker.io/altinity/clickhouse-operator:${{ github.event.inputs.ch-operator-tag }}
dst: |
docker.io/antrea/flow-visibility-clickhouse-operator:${{ github.event.inputs.ch-operator-tag }}
- name: Push antrea/flow-visibility-metrics-exporter
uses: akhilerm/[email protected]
with:
src: docker.io/altinity/metrics-exporter:${{ github.event.inputs.ch-operator-tag }}
dst: |
docker.io/antrea/flow-visibility-metrics-exporter:${{ github.event.inputs.ch-operator-tag }}
- name: Push antrea/flow-visibility-grafana
uses: akhilerm/[email protected]
with:
src: docker.io/grafana/grafana:${{ github.event.inputs.ch-server-tag }}
dst: |
docker.io/antrea/flow-visibility-grafana:${{ github.event.inputs.ch-server-tag }}
- name: Push antrea/flow-visibility-clickhouse-server
uses: akhilerm/[email protected]
with:
src: docker.io/yandex/clickhouse-server:${{ github.event.inputs.ch-server-tag }}
dst: |
docker.io/antrea/flow-visibility-clickhouse-server:${{ github.event.inputs.ch-server-tag }}
Loading

0 comments on commit a4c879b

Please sign in to comment.