From c940e122bc211c25aefdb0f1132582e6f81c7756 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Mon, 12 Feb 2024 23:46:47 +0000 Subject: [PATCH] Test with Keycloak 23 The current Keycloak version is 23, represented by a moving 23.0 tag on Quay. Run the Zuul integration with this version since it's probably closer to what organizations are likely to deploy these days (it's what the OpenDev Collaboratory is currently upgrading their deployment to). Drop the database vendor override to H2, since it's the default in these newer Quarkus-based images anyway (and the envvar which was used to set this in the older Wildfly-based images is ignored as best I can tell, so it really was doing nothing). Change-Id: Ifb0b085bb3702e52db8b382c28e1580643e3c33c --- doc/source/examples/keycloak/docker-compose.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/source/examples/keycloak/docker-compose.yaml b/doc/source/examples/keycloak/docker-compose.yaml index 9e70fec5fa..57b8348a6a 100644 --- a/doc/source/examples/keycloak/docker-compose.yaml +++ b/doc/source/examples/keycloak/docker-compose.yaml @@ -7,11 +7,10 @@ version: '2.1' services: keycloak: - image: quay.io/keycloak/keycloak:18.0 + image: quay.io/keycloak/keycloak:23.0 environment: - KEYCLOAK_ADMIN=admin - KEYCLOAK_ADMIN_PASSWORD=kcadmin - - DB_VENDOR=h2 - KC_HTTP_PORT=8082 ports: - "8082:8082"