Skip to content

Commit

Permalink
Update Keycloak Version to 25.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasdarimont committed Sep 10, 2024
1 parent 0f69203 commit 7e59830
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions deployments/local/dev/keycloakx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#see https://www.keycloak.org/server/containers
ARG KEYCLOAK_VERSION=25.0.4
ARG KEYCLOAK_VERSION=25.0.5
FROM quay.io/keycloak/keycloak:$KEYCLOAK_VERSION
#FROM thomasdarimont/keycloak:21.0.999.1
USER root
Expand All @@ -22,8 +22,8 @@ RUN keytool -import -cacerts -noprompt -file /etc/x509/tls.crt.pem -storepass ch

RUN echo "Downloading OpenTelemetry Javaagent and support libs"

ENV OTEL_AGENT_VERSION=1.32.1
ENV OTEL_TRACE_VERSION=1.35.0
ENV OTEL_AGENT_VERSION=1.33.6
ENV OTEL_TRACE_VERSION=1.42.0

ADD --chown=keycloak:keycloak https://search.maven.org/remotecontent?filepath=io/opentelemetry/javaagent/opentelemetry-javaagent/$OTEL_AGENT_VERSION/opentelemetry-javaagent-$OTEL_AGENT_VERSION.jar /opt/keycloak/opentelemetry-javaagent.jar
ADD --chown=keycloak:keycloak https://repo1.maven.org/maven2/io/opentelemetry/opentelemetry-extension-trace-propagators/$OTEL_TRACE_VERSION/opentelemetry-extension-trace-propagators-$OTEL_TRACE_VERSION.jar /opt/keycloak/providers/opentelemetry-extension-trace-propagators.jar
Expand Down
2 changes: 1 addition & 1 deletion deployments/local/dev/keycloakx/Dockerfile-ci
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#see https://www.keycloak.org/server/containers
ARG KEYCLOAK_VERSION=25.0.4
ARG KEYCLOAK_VERSION=25.0.5
FROM quay.io/keycloak/keycloak:$KEYCLOAK_VERSION
USER root

Expand Down
2 changes: 1 addition & 1 deletion deployments/local/standalone/keycloak/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#see https://www.keycloak.org/server/containers
ARG KEYCLOAK_VERSION=25.0.4
ARG KEYCLOAK_VERSION=25.0.5
FROM quay.io/keycloak/keycloak:$KEYCLOAK_VERSION

USER root
Expand Down
2 changes: 1 addition & 1 deletion keycloak.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Global configuration for Keycloak environment
KEYCLOAK_VERSION=25.0.4
KEYCLOAK_VERSION=25.0.5
KEYCLOAK_CONFIG_FILE=standalone.xml
USER=1000
GROUP=1000
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG KEYCLOAK_VERSION=25.0.4
ARG KEYCLOAK_VERSION=25.0.5
FROM quay.io/keycloak/keycloak:$KEYCLOAK_VERSION

ENV KC_FEATURES=preview
2 changes: 1 addition & 1 deletion keycloak/docker/src/main/docker/keycloakx/Dockerfile.plain
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG KEYCLOAK_VERSION=25.0.4
ARG KEYCLOAK_VERSION=25.0.5
FROM quay.io/keycloak/keycloak:$KEYCLOAK_VERSION

USER root
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static KeycloakContainer createKeycloakContainer() {
}

public static KeycloakContainer createKeycloakContainer(String realmImportFileName) {
return createKeycloakContainer("quay.io/keycloak/keycloak:25.0.4", realmImportFileName);
return createKeycloakContainer("quay.io/keycloak/keycloak:25.0.5", realmImportFileName);
}

public static KeycloakContainer createKeycloakContainer(String imageName, String realmImportFileName) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<docker.file>keycloakx/Dockerfile.plain</docker.file>

<!-- Keycloak -->
<keycloak.version>25.0.4</keycloak.version>
<keycloak.version>25.0.5</keycloak.version>

<!-- Parameterizable Project Versions -->
<revision>1.0.0</revision>
Expand Down

0 comments on commit 7e59830

Please sign in to comment.