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-12-05 07:30:11 +00:00
MAVEN_ARGS : "-B -nsu -Daether.connector.http.connectionMaxTtl=25"
2024-03-05 15:40:55 +00:00
MINIKUBE_VERSION : v1.32.0
KUBERNETES_VERSION : v1.27.10 # OCP 4.14
2024-03-15 16:42:40 +00:00
MINIKUBE_MEMORY : 4096 # Without explicitly setting memory, minikube uses ~25% of available memory which might be too little on smaller GitHub runners for running the tests
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
2024-10-11 14:25:15 +00:00
uses : manusa/actions-setup-minikube@v2.13.0
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
2024-03-15 16:42:40 +00:00
start args : --addons=ingress --memory=${{ env.MINIKUBE_MEMORY }}
2022-12-14 15:12:23 +00:00
2022-04-12 09:19:24 +00:00
- name : Download keycloak distribution
id : download-keycloak-dist
2024-04-15 15:14:00 +00:00
uses : actions/download-artifact@v4
2022-04-12 09:19:24 +00:00
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 : |
2023-12-05 07:30:11 +00:00
./mvnw install -Poperator -pl :keycloak-operator -am \
2022-04-28 11:21:55 +00:00
-Dquarkus.kubernetes.image-pull-policy=IfNotPresent \
2024-02-08 14:03:20 +00:00
-Dkc.operator.keycloak.image=keycloak:${{ env.version_local }} \
2022-10-25 06:58:34 +00:00
-Dtest.operator.custom.image=custom-keycloak:${{ env.version_local }} \
2024-02-08 14:03:20 +00:00
-Dkc.operator.keycloak.image-pull-policy=Never
2022-04-12 09:19:24 +00:00
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
2024-10-11 14:25:15 +00:00
uses : manusa/actions-setup-minikube@v2.13.0
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
2024-03-15 16:42:40 +00:00
start args : --addons=ingress --memory=${{ env.MINIKUBE_MEMORY }}
2022-12-14 15:12:23 +00:00
2022-04-12 09:19:24 +00:00
- name : Download keycloak distribution
id : download-keycloak-dist
2024-04-15 15:14:00 +00:00
uses : actions/download-artifact@v4
2022-04-12 09:19:24 +00:00
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)
2023-12-05 07:30:11 +00:00
./mvnw install -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 \
2024-02-08 14:03:20 +00:00
-Dkc.operator.keycloak.image=keycloak:${{ env.version_remote }} \
-Dquarkus.kubernetes.env.vars.kc-operator-keycloak-image-pull-policy=Never \
2022-10-25 06:58:34 +00:00
-Dtest.operator.custom.image=custom-keycloak:${{ env.version_remote }} \
2024-02-08 14:03:20 +00:00
--no -transfer-progress -Dtest.operator.deployment=remote
2022-04-12 09:19:24 +00:00
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
2024-10-11 14:25:15 +00:00
uses : manusa/actions-setup-minikube@v2.13.0
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
2024-03-15 16:42:40 +00:00
start args : --memory=${{ env.MINIKUBE_MEMORY }}
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
2024-04-15 15:14:00 +00:00
uses : actions/download-artifact@v4
2022-04-12 09:19:24 +00:00
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 : |
2023-09-19 17:46:37 +00:00
kubectl apply -f src/test/resources/example-postgres.yaml
2022-04-12 09:19:24 +00:00
./scripts/check-crds-installed.sh
2023-09-19 17:46:37 +00:00
kubectl apply -f src/test/resources/example-db-secret.yaml
kubectl apply -f src/test/resources/example-tls-secret.yaml
kubectl apply -f src/test/resources/example-keycloak.yaml
kubectl apply -f src/test/resources/example-realm.yaml
2022-04-12 09:19:24 +00:00
# Wait for the CRs to be ready
./scripts/check-examples-installed.sh
2023-09-19 17:46:37 +00:00
- name : Single namespace cleanup
working-directory : operator
run : |
kubectl delete -f src/test/resources/example-postgres.yaml
kubectl delete -f src/test/resources/example-db-secret.yaml
kubectl delete -f src/test/resources/example-tls-secret.yaml
kubectl delete -f src/test/resources/example-keycloak.yaml
kubectl delete -f src/test/resources/example-realm.yaml
- name : Arrange OLM test installation for all namespaces
working-directory : operator
run : |
kubectl patch csv keycloak-operator.v86400000.0.0 --type merge --patch '{"spec": {"installModes": [{"type": "AllNamespaces","supported": true}]}}'
kubectl patch operatorgroup og --type json --patch '[{"op":"remove","path":"/spec/targetNamespaces"}]'
- name : Deploy an example Keycloak in a different namespace and wait for it to be ready
working-directory : operator
run : |
kubectl create ns keycloak
kubectl apply -f src/test/resources/example-postgres.yaml -n keycloak
kubectl apply -f src/test/resources/example-db-secret.yaml -n keycloak
kubectl apply -f src/test/resources/example-tls-secret.yaml -n keycloak
kubectl apply -f src/test/resources/example-keycloak.yaml -n keycloak
kubectl apply -f src/test/resources/example-realm.yaml -n keycloak
# Wait for the CRs to be ready
./scripts/check-examples-installed.sh keycloak
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
2024-01-09 07:39:43 +00:00
- build
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) }}