Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Keycloak version to 24 as Quarkus move to this version #1153

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading