2022-01-12 08:06:10 +00:00
|
|
|
name: Keycloak Operator CI
|
|
|
|
|
2022-03-29 13:10:20 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore: [main]
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
2022-01-12 08:06:10 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
JDK_VERSION: 11
|
2022-04-12 09:19:24 +00:00
|
|
|
MINIKUBE_VERSION: "v1.24.0"
|
|
|
|
KUBERNETES_VERSION: "v1.22.3"
|
2022-01-12 08:06:10 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
# Only run once for latest commit per ref and cancel other (previous) runs.
|
|
|
|
group: ci-operator-keycloak-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-04-12 09:19:24 +00:00
|
|
|
name: Build distribution
|
2022-03-29 13:10:20 +00:00
|
|
|
if: ${{ ( github.event_name != 'schedule' ) || ( github.event_name == 'schedule' && github.repository == 'keycloak/keycloak' ) }}
|
2022-01-12 08:06:10 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-28 15:51:51 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-01-12 08:06:10 +00:00
|
|
|
- name: Update maven settings
|
|
|
|
run: mkdir -p ~/.m2 ; cp .github/settings.xml ~/.m2/
|
2022-04-14 08:52:59 +00:00
|
|
|
- uses: actions/setup-java@v3
|
2022-01-12 08:06:10 +00:00
|
|
|
with:
|
2022-03-30 15:45:31 +00:00
|
|
|
distribution: 'temurin'
|
2022-01-12 08:06:10 +00:00
|
|
|
java-version: ${{ env.JDK_VERSION }}
|
2022-04-12 09:19:24 +00:00
|
|
|
cache: 'maven'
|
2022-01-12 08:06:10 +00:00
|
|
|
- name: Create the Keycloak distribution
|
|
|
|
run: |
|
2022-02-11 11:55:57 +00:00
|
|
|
mvn clean install -Pdistribution -DskipTests -DskipExamples -DskipTestsuite
|
2022-04-12 09:19:24 +00:00
|
|
|
- name: Store Keycloak distribution
|
|
|
|
id: store-keycloak
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: keycloak-distribution
|
|
|
|
retention-days: 1
|
|
|
|
path: quarkus/dist/target/keycloak*.tar.gz
|
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:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set outputs
|
|
|
|
id: vars
|
|
|
|
run: echo "::set-output name=version::0.0.1-${GITHUB_SHA::6}"
|
|
|
|
- name: Update maven settings
|
|
|
|
run: mkdir -p ~/.m2 ; cp .github/settings.xml ~/.m2/
|
|
|
|
- uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: ${{ env.JDK_VERSION }}
|
|
|
|
cache: 'maven'
|
2022-02-03 08:38:45 +00:00
|
|
|
- name: Setup Minikube-Kubernetes
|
2022-05-12 12:53:59 +00:00
|
|
|
uses: manusa/actions-setup-minikube@v2.6.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
|
2022-03-09 13:25:18 +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:
|
|
|
|
name: keycloak-distribution
|
|
|
|
path: quarkus/container
|
|
|
|
- name: Build Keycloak Docker images
|
2022-04-11 09:59:33 +00:00
|
|
|
run: |
|
|
|
|
eval $(minikube -p minikube docker-env)
|
2022-04-12 09:19:24 +00:00
|
|
|
(cd quarkus/container && docker build --build-arg KEYCLOAK_DIST=$(ls keycloak-*.tar.gz) . -t keycloak:${{ steps.vars.outputs.version }})
|
2022-05-10 13:25:01 +00:00
|
|
|
(cd operator/app && ./scripts/build-testing-docker-images.sh ${{ steps.vars.outputs.version }} 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-05-10 13:25:01 +00:00
|
|
|
mvn clean verify -Poperator -pl :keycloak-operator -am \
|
2022-04-28 11:21:55 +00:00
|
|
|
-Dquarkus.kubernetes.image-pull-policy=IfNotPresent \
|
2022-04-12 09:19:24 +00:00
|
|
|
-Doperator.keycloak.image=keycloak:${{ steps.vars.outputs.version }} \
|
|
|
|
-Dtest.operator.custom.image=custom-keycloak:${{ steps.vars.outputs.version }} \
|
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:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set outputs
|
|
|
|
id: vars
|
|
|
|
run: echo "::set-output name=version::0.0.1-${GITHUB_SHA::6}"
|
|
|
|
- name: Update maven settings
|
|
|
|
run: mkdir -p ~/.m2 ; cp .github/settings.xml ~/.m2/
|
|
|
|
- uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: ${{ env.JDK_VERSION }}
|
|
|
|
cache: 'maven'
|
|
|
|
- name: Setup Minikube-Kubernetes
|
2022-05-12 12:53:59 +00:00
|
|
|
uses: manusa/actions-setup-minikube@v2.6.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
|
|
|
|
start args: '--addons=ingress'
|
|
|
|
- name: Download keycloak distribution
|
|
|
|
id: download-keycloak-dist
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: keycloak-distribution
|
|
|
|
path: quarkus/container
|
|
|
|
- name: Build Keycloak Docker images
|
|
|
|
run: |
|
|
|
|
eval $(minikube -p minikube docker-env)
|
|
|
|
(cd quarkus/container && docker build --build-arg KEYCLOAK_DIST=$(ls keycloak-*.tar.gz) . -t keycloak:${{ steps.vars.outputs.version }})
|
2022-05-10 13:25:01 +00:00
|
|
|
(cd operator/app && ./scripts/build-testing-docker-images.sh ${{ steps.vars.outputs.version }} 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-05-10 13:25:01 +00:00
|
|
|
mvn clean verify -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-04-20 09:09:08 +00:00
|
|
|
-Doperator.keycloak.image=keycloak:${{ steps.vars.outputs.version }} \
|
|
|
|
-Dquarkus.jib.jvm-arguments="-Djava.util.logging.manager=org.jboss.logmanager.LogManager","-Doperator.keycloak.image-pull-policy=Never" \
|
2022-04-12 09:19:24 +00:00
|
|
|
-Dtest.operator.custom.image=custom-keycloak:${{ steps.vars.outputs.version }} \
|
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:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Update maven settings
|
|
|
|
run: mkdir -p ~/.m2 ; cp .github/settings.xml ~/.m2/
|
|
|
|
- uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: ${{ env.JDK_VERSION }}
|
|
|
|
cache: 'maven'
|
|
|
|
- name: Setup Minikube-Kubernetes
|
2022-05-12 12:53:59 +00:00
|
|
|
uses: manusa/actions-setup-minikube@v2.6.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
|
|
|
|
- name: Install OPM
|
|
|
|
uses: redhat-actions/openshift-tools-installer@v1
|
|
|
|
with:
|
|
|
|
source: "github"
|
|
|
|
opm: "1.21.0"
|
|
|
|
- name: Install Yq
|
|
|
|
run: sudo snap install yq
|
|
|
|
- name: Install OLM
|
2022-05-10 13:25:01 +00:00
|
|
|
working-directory: operator/app
|
2022-04-12 09:19:24 +00:00
|
|
|
run: ./scripts/install-olm.sh
|
|
|
|
- name: Download keycloak distribution
|
|
|
|
id: download-keycloak-dist
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: keycloak-distribution
|
|
|
|
path: quarkus/container
|
|
|
|
- name: Arrange OLM test installation
|
2022-05-10 13:25:01 +00:00
|
|
|
working-directory: operator/app
|
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-05-10 13:25:01 +00:00
|
|
|
working-directory: operator/app
|
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
|