Skip to content

Commit

Permalink
Update Keycloak version to 24 as Quarkus move to this version
Browse files Browse the repository at this point in the history
  • Loading branch information
jedla97 committed Jun 3, 2024
1 parent c515eb9 commit 2ff864a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ items:
from:
kind: DockerImage
# Hardcoded image is used only here, tests use one from KeycloakContainer
name: quay.io/keycloak/keycloak:23.0
name: quay.io/keycloak/keycloak:24.0
- apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down
6 changes: 6 additions & 0 deletions examples/keycloak/src/test/resources/keycloak-realm.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"users": [
{
"username": "test-normal-user",
"email": "test-normal-user@localhost",
"firstName": "test-normal-user",
"lastName": "test-normal-user",
"enabled": true,
"credentials": [
{
Expand All @@ -29,6 +32,9 @@
},
{
"username": "test-admin-user",
"email": "test-admin-user@localhost",
"firstName": "test-admin-user",
"lastName": "test-admin-user",
"enabled": true,
"credentials": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface KeycloakContainer {
String image() default "quay.io/keycloak/keycloak:23.0";
String image() default "quay.io/keycloak/keycloak:24.0";

int port() default 8080;

Expand Down

0 comments on commit 2ff864a

Please sign in to comment.