forked from banzaicloud/koperator
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Koperator performance test load container image building from t…
…he default branch (banzaicloud#906) * ci(docker): added perf test load image building * fix(docker,perf-test-load): fixed Go version https://github.com/jamiealquiza/sangrenel.git 's default branch latest build require Go 1.16. * fix(docker,perf-test-load): removed missing pkg On Go 1.19 image. * fix(docker,perf-test-load): fixed abs workdir
- Loading branch information
Showing
2 changed files
with
67 additions
and
3 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,64 @@ | ||
name: Docker / Performance test load | ||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- "koperator-performance-test-load/v?[0-9]+.[0-9]+.[0-9]+" | ||
env: | ||
PLATFORMS: linux/amd64 | ||
jobs: | ||
docker: | ||
name: Docker | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v3 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.ref }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Determine tag or commit | ||
uses: haya14busa/action-cond@v1 | ||
id: refortag | ||
with: | ||
cond: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
if_true: ${{ github.ref }} | ||
if_false: latest | ||
|
||
- name: Determine image tag | ||
id: imagetag | ||
run: echo "value=${TAG_OR_BRANCH##*/}" >> $GITHUB_OUTPUT | ||
env: | ||
TAG_OR_BRANCH: ${{ steps.refortag.outputs.value }} | ||
|
||
- name: Setup Docker metadata | ||
id: setup-docker-metadata | ||
uses: docker/metadata-action@v3 | ||
with: | ||
images: ghcr.io/banzaicloud/koperator-performance-test-load | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.CR_PAT }} | ||
|
||
- name: Build koperator-performance-test-load | ||
uses: docker/build-push-action@v3 | ||
with: | ||
tags: ghcr.io/banzaicloud/koperator-performance-test-load:${{ steps.imagetag.outputs.value }} | ||
file: docs/benchmarks/loadgens/Dockerfile | ||
platforms: ${{ env.PLATFORMS }} | ||
push: true | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache |
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