Skip to content

Commit

Permalink
fix: build benchmark image for sso
Browse files Browse the repository at this point in the history
  • Loading branch information
NithinKuruba committed Dec 30, 2024
1 parent ac973d5 commit cc452af
Show file tree
Hide file tree
Showing 10 changed files with 104 additions and 647 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/publish-image-keycloak-benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Create and publish Keycloak Docker image - Dev

on:
workflow_dispatch:

env:
GITHUB_REGISTRY: ghcr.io
REDHAT_REGISTRY: registry.redhat.io
IMAGE_NAME: bcgov/sso-benchmark

jobs:
build-and-push-image:
runs-on: ubuntu-20.04
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to the GitHub Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.GITHUB_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Log in to the REDHAT Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REDHAT_REGISTRY }}
username: ${{ secrets.REDHAT_USERNAME }}
password: ${{ secrets.REDHAT_PASSWORD }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: docker/keycloak
push: true
tags: ${{ env.GITHUB_REGISTRY }}/${{env.IMAGE_NAME}}:dev
file: docker/keycloak/Dockerfile-26-perf
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new

# Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
141 changes: 0 additions & 141 deletions benchmark-load-testing/bin/initialize-benchmark-entities.sh

This file was deleted.

43 changes: 0 additions & 43 deletions benchmark-load-testing/bin/kc-chaos.sh

This file was deleted.

138 changes: 0 additions & 138 deletions benchmark-load-testing/bin/kc-failover.sh

This file was deleted.

Loading

0 comments on commit cc452af

Please sign in to comment.