Skip to content

Commit 23e227b

Browse files
committed
Creating the release branch to run with Keycloak 25.x.
Signed-off-by: Kamesh Akella <[email protected]>
1 parent 077679e commit 23e227b

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
gh release create ${{ steps.get_version.outputs.VERSION }}
6363
--target ${{ github.ref }}
6464
--title 'Keycloak Benchmark ${{ steps.get_version.outputs.VERSION }}'
65-
--notes 'Latest version built from the `${{ github.ref_name }}` branch.'
65+
--notes 'Latest version built from the `${{ github.ref_name }}` branch.<br>Use this with Keycloak 25.x'
6666
--prerelease
6767
./dataset/target/keycloak-benchmark-dataset-${{ steps.get_version.outputs.VERSION }}.jar
6868
./benchmark/target/keycloak-benchmark-${{ steps.get_version.outputs.VERSION }}.zip

doc/benchmark/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title: Benchmark Guide
22
name: benchmark-guide
3-
version: '0.10'
3+
version: '0.13'
44
nav:
55
- modules/ROOT/nav.adoc

doc/dataset/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
title: Dataset Guide
22
name: dataset-guide
3-
version: '0.10'
3+
version: '0.13'
44
nav:
55
- modules/ROOT/nav.adoc
66

doc/kubernetes/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
title: Kubernetes Guide
22
name: kubernetes-guide
3-
version: '0.10'
3+
version: '0.13'
44
nav:
55
- modules/ROOT/nav.adoc
66
ext:

doc/kubernetes/modules/ROOT/pages/openshift/installation-openshift.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To configure the deployment, see xref:customizing-deployment.adoc[] for details.
4646

4747
=== Installing Keycloak from the Operator Hub
4848

49-
By default the operator is installed directly via https://raw.githubusercontent.com/keycloak/keycloak-k8s-resources/refs/tags/nightly/kubernetes/kubernetes.yml[`keycloak-k8s-resources`].
49+
By default the operator is installed directly via https://raw.githubusercontent.com/keycloak/keycloak-k8s-resources/refs/tags/25.0.1/kubernetes/kubernetes.yml[`keycloak-k8s-resources`].
5050

5151
To install the operator from the _Operator Hub_ using the _Operator Lifecycle Manager_ set:
5252
[source,shell]

doc/kubernetes/modules/ROOT/pages/util/custom-image-for-keycloak.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ KC_CONTAINER_IMAGE=quay.io/keycloak/keycloak:20.0.1
2727
== Building a custom Keycloak image for minikube
2828

2929
. Check out https://github.com/keycloak/keycloak[Keycloak's Git repository].
30-
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-999.0.0-SNAPSHOT.tar.gz` in folder `/quarkus/dist/target`.
30+
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-25.0.1.tar.gz` in folder `/quarkus/dist/target`.
3131
. Configure the Minikube environment to use the locally built image.
3232
+
3333
.Example entry in the `.env` file
@@ -66,7 +66,7 @@ task
6666
== Building a custom Keycloak image for OpenShift
6767

6868
. Check out https://github.com/keycloak/keycloak[Keycloak's Git repository].
69-
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-999.0.0-SNAPSHOT.tar.gz` in folder `/quarkus/dist/target`.
69+
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-25.0.1.tar.gz` in folder `/quarkus/dist/target`.
7070
. Build the container using https://docs.openshift.com/container-platform/4.14/cicd/builds/creating-build-inputs.html[OpenShift's binary build].
7171
+
7272
[source,bash]
@@ -99,7 +99,7 @@ task
9999
== Building a custom Keycloak image for generic Kubernetes
100100

101101
. Check out https://github.com/keycloak/keycloak[Keycloak's Git repository].
102-
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-999.0.0-SNAPSHOT.tar.gz` in folder `/quarkus/dist/target`.
102+
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-25.0.1.tar.gz` in folder `/quarkus/dist/target`.
103103
. Build the container, either with Podman or with Docker.
104104
+
105105
In the following examples, replace `quay.io` and `quay.io/namespace/repository:tag` with the registry and the image name you are using.

provision/common/Taskfile.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ vars:
99
KC_DB_POOL_MAX_SIZE: '{{default "10" .KC_DB_POOL_MAX_SIZE}}'
1010
KC_DB_POOL_MIN_SIZE: '{{default "5" .KC_DB_POOL_MIN_SIZE}}'
1111
KC_DATABASE: '{{default "postgres" .KC_DATABASE}}'
12-
KC_OPERATOR_TAG: '{{default "nightly" .KC_OPERATOR_TAG}}'
12+
KC_OPERATOR_TAG: '{{default "25.0.1" .KC_OPERATOR_TAG}}'
1313
KC_CONTAINER_IMAGE: '{{default "" .KC_CONTAINER_IMAGE}}'
1414
KC_INSTANCES: '{{default "1" .KC_INSTANCES}}'
1515
KC_CPU_REQUESTS: '{{default "0" .KC_CPU_REQUESTS}}'
@@ -194,7 +194,7 @@ tasks:
194194
- mkdir -p keycloak-cli
195195
- rm -f keycloak-cli/*.zip
196196
- >
197-
curl -L -f https://github.com/keycloak/keycloak/releases/download/nightly/keycloak-999.0.0-SNAPSHOT.zip -o keycloak-cli/keycloak.zip
197+
curl -L -f https://github.com/keycloak/keycloak/releases/download/25.0.1/keycloak-25.0.1.zip -o keycloak-cli/keycloak.zip
198198
status:
199199
- find keycloak-cli/keycloak.zip -mtime +1 -exec false {} +
200200
sources:
@@ -207,11 +207,11 @@ tasks:
207207
dir: ..
208208
cmds:
209209
# remove temporary folders to be extra safe
210-
- rm -rf keycloak-cli/keycloak-999.0.0-SNAPSHOT
210+
- rm -rf keycloak-cli/keycloak-25.0.1
211211
- rm -rf keycloak-cli/keycloak
212212
- unzip -o -q keycloak-cli/keycloak.zip -d keycloak-cli
213213
# the output folder depends on the version we're about to unpack
214-
- mv keycloak-cli/keycloak-999.0.0-SNAPSHOT keycloak-cli/keycloak
214+
- mv keycloak-cli/keycloak-25.0.1 keycloak-cli/keycloak
215215
sources:
216216
- keycloak-cli/keycloak.zip
217217
- minikube/.task/subtask-{{.TASK}}.yaml

provision/keycloak-tasks/Taskfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ vars:
3737
KC_DB_POOL_MAX_SIZE: '{{default "10" .KC_DB_POOL_MAX_SIZE}}'
3838
KC_DB_POOL_MIN_SIZE: '{{default "5" .KC_DB_POOL_MIN_SIZE}}'
3939
KC_DATABASE: '{{default "postgres" .KC_DATABASE}}'
40-
KC_OPERATOR_TAG: '{{default "nightly" .KC_OPERATOR_TAG}}'
40+
KC_OPERATOR_TAG: '{{default "25.0.1" .KC_OPERATOR_TAG}}'
4141
KC_CONTAINER_IMAGE: '{{default "" .KC_CONTAINER_IMAGE}}'
4242
KC_INSTANCES: '{{default "1" .KC_INSTANCES}}'
4343
KC_CPU_REQUESTS: '{{default "0" .KC_CPU_REQUESTS}}'

provision/keycloak-tasks/keycloak-image-helm/templates/keycloak-nightly-imagestream.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
- name: latest
1212
from:
1313
kind: DockerImage
14-
name: quay.io/keycloak/keycloak:nightly
14+
name: quay.io/keycloak/keycloak:25.0.1
1515
generation: 2
1616
importPolicy:
1717
importMode: Legacy

0 commit comments

Comments
 (0)