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
This commit is contained in:
Jeremy Stanley
2024-02-12 23:51:43 +00:00
parent 0ca3876684
commit c940e122bc
@@ -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"