2022-01-12 08:06:10 +00:00
|
|
|
name: Keycloak Operator CI
|
|
|
|
|
2022-03-29 13:10:20 +00:00
|
|
|
on:
|
|
|
|
push:
|
2022-12-14 15:12:23 +00:00
|
|
|
branches-ignore:
|
|
|
|
- main
|
|
|
|
- dependabot/**
|
2022-03-29 13:10:20 +00:00
|
|
|
pull_request:
|
2022-12-14 15:12:23 +00:00
|
|
|
workflow_dispatch:
|
2022-01-12 08:06:10 +00:00
|
|
|
|
|
|
|
env:
|
2023-08-30 07:36:35 +00:00
|
|
|
MINIKUBE_VERSION: v1.31.2
|
|
|
|
KUBERNETES_VERSION: v1.24.17 # OCP 4.11
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
2022-01-12 08:06:10 +00:00
|
|
|
|
|
|
|
concurrency:
|
2022-12-14 15:12:23 +00:00
|
|
|
# Only cancel jobs for PR updates
|
2023-07-27 04:26:03 +00:00
|
|
|
group: operator-ci-${{ github.ref }}
|
2022-01-12 08:06:10 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
2023-01-30 07:07:10 +00:00
|
|
|
|
|
|
|
conditional:
|
|
|
|
name: Check conditional workflows and jobs
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
operator: ${{ steps.conditional.outputs.operator }}
|
|
|
|
steps:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-01-30 07:07:10 +00:00
|
|
|
|
|
|
|
- id: conditional
|
|
|
|
uses: ./.github/actions/conditional
|
2023-07-25 13:43:53 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2023-01-30 07:07:10 +00:00
|
|
|
|
2022-01-12 08:06:10 +00:00
|
|
|
build:
|
2022-04-12 09:19:24 +00:00
|
|
|
name: Build distribution
|
2023-01-30 07:07:10 +00:00
|
|
|
if: needs.conditional.outputs.operator == 'true'
|
2022-01-12 08:06:10 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-30 07:07:10 +00:00
|
|
|
needs: conditional
|
2022-01-12 08:06:10 +00:00
|
|
|
steps:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
- name: Build Keycloak
|
|
|
|
uses: ./.github/actions/build-keycloak
|
2022-04-12 09:19:24 +00:00
|
|
|
with:
|
2022-12-14 15:12:23 +00:00
|
|
|
upload-m2-repo: false
|
|
|
|
upload-dist: true
|
2022-01-12 08:06:10 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
test-local:
|
|
|
|
name: Test local
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [build]
|
|
|
|
steps:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
- name: Set version
|
2022-04-12 09:19:24 +00:00
|
|
|
id: vars
|
2022-10-25 06:58:34 +00:00
|
|
|
run: echo "version_local=0.0.1-${GITHUB_SHA::6}" >> $GITHUB_ENV
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2023-07-26 10:35:21 +00:00
|
|
|
- name: Setup Java
|
|
|
|
uses: ./.github/actions/java-setup
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-02-03 08:38:45 +00:00
|
|
|
- name: Setup Minikube-Kubernetes
|
2022-12-14 10:03:14 +00:00
|
|
|
uses: manusa/actions-setup-minikube@v2.7.2
|
2022-02-03 08:38:45 +00:00
|
|
|
with:
|
2022-04-12 09:19:24 +00:00
|
|
|
minikube version: ${{ env.MINIKUBE_VERSION }}
|
|
|
|
kubernetes version: ${{ env.KUBERNETES_VERSION }}
|
2022-02-03 08:38:45 +00:00
|
|
|
github token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
driver: docker
|
2022-12-14 15:12:23 +00:00
|
|
|
start args: --addons=ingress
|
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Download keycloak distribution
|
|
|
|
id: download-keycloak-dist
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
2022-12-14 15:12:23 +00:00
|
|
|
name: keycloak-dist
|
2022-04-12 09:19:24 +00:00
|
|
|
path: quarkus/container
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Build Keycloak Docker images
|
2022-04-11 09:59:33 +00:00
|
|
|
run: |
|
|
|
|
eval $(minikube -p minikube docker-env)
|
2022-10-25 06:58:34 +00:00
|
|
|
(cd quarkus/container && docker build --build-arg KEYCLOAK_DIST=$(ls keycloak-*.tar.gz) . -t keycloak:${{ env.version_local }})
|
|
|
|
(cd operator && ./scripts/build-testing-docker-images.sh ${{ env.version_local }} keycloak custom-keycloak)
|
2022-04-11 09:59:33 +00:00
|
|
|
|
2022-02-16 11:26:04 +00:00
|
|
|
- name: Test operator running locally
|
|
|
|
run: |
|
2022-12-09 15:44:22 +00:00
|
|
|
./mvnw install --batch-mode -Poperator -pl :keycloak-operator -am \
|
2022-04-28 11:21:55 +00:00
|
|
|
-Dquarkus.kubernetes.image-pull-policy=IfNotPresent \
|
2022-10-25 06:58:34 +00:00
|
|
|
-Doperator.keycloak.image=keycloak:${{ env.version_local }} \
|
|
|
|
-Dtest.operator.custom.image=custom-keycloak:${{ env.version_local }} \
|
2022-04-11 09:59:33 +00:00
|
|
|
-Doperator.keycloak.image-pull-policy=Never \
|
2022-04-12 09:19:24 +00:00
|
|
|
-Dtest.operator.kubernetes.ip=$(minikube ip)
|
|
|
|
|
|
|
|
test-remote:
|
|
|
|
name: Test remote
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [build]
|
|
|
|
steps:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
- name: Set version
|
2022-04-12 09:19:24 +00:00
|
|
|
id: vars
|
2022-10-25 06:58:34 +00:00
|
|
|
run: echo "version_remote=0.0.1-${GITHUB_SHA::6}" >> $GITHUB_ENV
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2023-07-26 10:35:21 +00:00
|
|
|
- name: Setup Java
|
|
|
|
uses: ./.github/actions/java-setup
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Setup Minikube-Kubernetes
|
2022-12-14 10:03:14 +00:00
|
|
|
uses: manusa/actions-setup-minikube@v2.7.2
|
2022-04-12 09:19:24 +00:00
|
|
|
with:
|
|
|
|
minikube version: ${{ env.MINIKUBE_VERSION }}
|
|
|
|
kubernetes version: ${{ env.KUBERNETES_VERSION }}
|
|
|
|
github token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
driver: docker
|
2022-12-14 15:12:23 +00:00
|
|
|
start args: --addons=ingress
|
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Download keycloak distribution
|
|
|
|
id: download-keycloak-dist
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
2022-12-14 15:12:23 +00:00
|
|
|
name: keycloak-dist
|
2022-04-12 09:19:24 +00:00
|
|
|
path: quarkus/container
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Build Keycloak Docker images
|
|
|
|
run: |
|
|
|
|
eval $(minikube -p minikube docker-env)
|
2022-10-25 06:58:34 +00:00
|
|
|
(cd quarkus/container && docker build --build-arg KEYCLOAK_DIST=$(ls keycloak-*.tar.gz) . -t keycloak:${{ env.version_remote }})
|
|
|
|
(cd operator && ./scripts/build-testing-docker-images.sh ${{ env.version_remote }} keycloak custom-keycloak)
|
2022-02-16 11:26:04 +00:00
|
|
|
|
|
|
|
- name: Test operator running in cluster
|
2022-01-12 08:06:10 +00:00
|
|
|
run: |
|
2022-02-08 14:13:58 +00:00
|
|
|
eval $(minikube -p minikube docker-env)
|
2022-12-09 15:44:22 +00:00
|
|
|
./mvnw install --batch-mode -Poperator -pl :keycloak-operator -am \
|
2022-04-12 09:19:24 +00:00
|
|
|
-Dquarkus.container-image.build=true \
|
2022-04-28 11:21:55 +00:00
|
|
|
-Dquarkus.kubernetes.image-pull-policy=IfNotPresent \
|
2022-10-25 06:58:34 +00:00
|
|
|
-Doperator.keycloak.image=keycloak:${{ env.version_remote }} \
|
2023-04-21 06:32:29 +00:00
|
|
|
-Dquarkus.kubernetes.env.vars.operator-keycloak-image-pull-policy=Never \
|
2022-10-25 06:58:34 +00:00
|
|
|
-Dtest.operator.custom.image=custom-keycloak:${{ env.version_remote }} \
|
2022-03-09 13:25:18 +00:00
|
|
|
--no-transfer-progress -Dtest.operator.deployment=remote \
|
2022-04-12 09:19:24 +00:00
|
|
|
-Dtest.operator.kubernetes.ip=$(minikube ip)
|
|
|
|
|
|
|
|
test-olm:
|
|
|
|
name: Test OLM installation
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [build]
|
|
|
|
steps:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2023-07-26 10:35:21 +00:00
|
|
|
- name: Setup Java
|
|
|
|
uses: ./.github/actions/java-setup
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Setup Minikube-Kubernetes
|
2022-12-14 10:03:14 +00:00
|
|
|
uses: manusa/actions-setup-minikube@v2.7.2
|
2022-04-12 09:19:24 +00:00
|
|
|
with:
|
|
|
|
minikube version: ${{ env.MINIKUBE_VERSION }}
|
|
|
|
kubernetes version: ${{ env.KUBERNETES_VERSION }}
|
|
|
|
github token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
driver: docker
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Install OPM
|
|
|
|
uses: redhat-actions/openshift-tools-installer@v1
|
|
|
|
with:
|
2022-12-14 15:12:23 +00:00
|
|
|
source: github
|
|
|
|
opm: 1.21.0
|
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Install Yq
|
|
|
|
run: sudo snap install yq
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Install OLM
|
2022-06-27 15:54:45 +00:00
|
|
|
working-directory: operator
|
2022-04-12 09:19:24 +00:00
|
|
|
run: ./scripts/install-olm.sh
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Download keycloak distribution
|
|
|
|
id: download-keycloak-dist
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
2022-12-14 15:12:23 +00:00
|
|
|
name: keycloak-dist
|
2022-04-12 09:19:24 +00:00
|
|
|
path: quarkus/container
|
2022-12-14 15:12:23 +00:00
|
|
|
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Arrange OLM test installation
|
2022-06-27 15:54:45 +00:00
|
|
|
working-directory: operator
|
2022-04-12 09:19:24 +00:00
|
|
|
run: |
|
|
|
|
eval $(minikube -p minikube docker-env)
|
|
|
|
./scripts/olm-testing.sh ${GITHUB_SHA::6}
|
|
|
|
|
|
|
|
- name: Deploy an example Keycloak and wait for it to be ready
|
2022-06-27 15:54:45 +00:00
|
|
|
working-directory: operator
|
2022-04-12 09:19:24 +00:00
|
|
|
run: |
|
|
|
|
kubectl apply -f src/main/resources/example-postgres.yaml
|
|
|
|
./scripts/check-crds-installed.sh
|
2022-04-19 15:16:39 +00:00
|
|
|
kubectl apply -f src/main/resources/example-db-secret.yaml
|
|
|
|
kubectl apply -f src/main/resources/example-tls-secret.yaml
|
|
|
|
kubectl apply -f src/main/resources/example-keycloak.yaml
|
2022-04-12 09:19:24 +00:00
|
|
|
kubectl apply -f src/main/resources/example-realm.yaml
|
|
|
|
# Wait for the CRs to be ready
|
|
|
|
./scripts/check-examples-installed.sh
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
check:
|
2022-12-14 16:44:40 +00:00
|
|
|
name: Status Check - Keycloak Operator CI
|
2023-07-21 09:51:10 +00:00
|
|
|
if: always()
|
2023-01-30 07:07:10 +00:00
|
|
|
needs:
|
2023-09-05 06:34:41 +00:00
|
|
|
- conditional
|
2023-07-28 05:04:16 +00:00
|
|
|
- test-local
|
|
|
|
- test-remote
|
|
|
|
- test-olm
|
2022-12-14 15:12:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-06 11:40:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-28 05:04:16 +00:00
|
|
|
- uses: ./.github/actions/status-check
|
2022-12-14 15:12:23 +00:00
|
|
|
with:
|
2023-07-28 05:04:16 +00:00
|
|
|
jobs: ${{ toJSON(needs) }}
|