Skip to content

Commit a240c91

Browse files
committed
Updating to latest Keycloak patch release
Signed-off-by: Alexander Schwartz <[email protected]>
1 parent 19bc028 commit a240c91

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

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-24.0.1.tar.gz` in folder `/quarkus/dist/target`.
30+
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-24.0.5.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-24.0.1.tar.gz` in folder `/quarkus/dist/target`.
69+
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-24.0.5.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-24.0.1.tar.gz` in folder `/quarkus/dist/target`.
102+
. Build using `mvn clean install -DskipTests -am -pl quarkus/dist` to create a `keycloak-24.0.5.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.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>Keycloak Benchmark Parent</description>
1111

1212
<properties>
13-
<keycloak.version>24.0.1</keycloak.version>
13+
<keycloak.version>24.0.5</keycloak.version>
1414
<junit5.version>5.9.3</junit5.version>
1515
<httpclient.version>4.5.14</httpclient.version>
1616
<maven.enforcer.plugin.version>3.4.1</maven.enforcer.plugin.version>

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 "24.0.1" .KC_OPERATOR_TAG}}'
12+
KC_OPERATOR_TAG: '{{default "24.0.5" .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}}'
@@ -189,7 +189,7 @@ tasks:
189189
- mkdir -p keycloak-cli
190190
- rm -f keycloak-cli/*.zip
191191
- >
192-
curl -L -f https://github.com/keycloak/keycloak/releases/download/24.0.1/keycloak-24.0.1.zip -o keycloak-cli/keycloak.zip
192+
curl -L -f https://github.com/keycloak/keycloak/releases/download/24.0.5/keycloak-24.0.5.zip -o keycloak-cli/keycloak.zip
193193
status:
194194
- find keycloak-cli/keycloak.zip -mtime +1 -exec false {} +
195195
sources:
@@ -202,11 +202,11 @@ tasks:
202202
dir: ..
203203
cmds:
204204
# remove temporary folders to be extra safe
205-
- rm -rf keycloak-cli/keycloak-24.0.1
205+
- rm -rf keycloak-cli/keycloak-24.0.5
206206
- rm -rf keycloak-cli/keycloak
207207
- unzip -o -q keycloak-cli/keycloak.zip -d keycloak-cli
208208
# the output folder depends on the version we're about to unpack
209-
- mv keycloak-cli/keycloak-24.0.1 keycloak-cli/keycloak
209+
- mv keycloak-cli/keycloak-24.0.5 keycloak-cli/keycloak
210210
sources:
211211
- keycloak-cli/keycloak.zip
212212
- 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 "24.0.1" .KC_OPERATOR_TAG}}'
40+
KC_OPERATOR_TAG: '{{default "24.0.5" .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:24.0.1
14+
name: quay.io/keycloak/keycloak:24.0.5
1515
generation: 2
1616
importPolicy:
1717
importMode: Legacy

0 commit comments

Comments
 (0)