-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Antrea registry for Flow Visibility related external images
Signed-off-by: Yongming Ding <[email protected]>
- Loading branch information
Yongming Ding
committed
Mar 24, 2022
1 parent
a1a7924
commit a4c879b
Showing
7 changed files
with
3,817 additions
and
8 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,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 }} |
Oops, something went wrong.