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

Tdrd 319 upgrade keycloak v26 #1281

Merged
merged 3 commits into from
Dec 11, 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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/keycloak/keycloak:25.0.4 as builder
FROM quay.io/keycloak/keycloak:26.0.7 as builder
FROM registry.access.redhat.com/ubi9-minimal
COPY --from=builder /opt/keycloak/ /opt/keycloak/
USER root
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ To run, build and test locally:
* Run the local docker image:
```
[root directory] $ docker run -d --name [some name] -p 8081:8080 \
-e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin -e KEYCLOAK_IMPORT=/keycloak-configuration/tdr-realm.json \
-e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -e KEYCLOAK_IMPORT=/keycloak-configuration/tdr-realm.json \
-e REALM_ADMIN_CLIENT_SECRET=[some value] -e CLIENT_SECRET=[some value] -e BACKEND_CHECKS_CLIENT_SECRET=[some value] \
-e REPORTING_CLIENT_SECRET=[some value] \
-e USER_ADMIN_CLIENT_SECRET=[some value] \
Expand All @@ -185,8 +185,8 @@ To run, build and test locally:
-e BLOCK_SHARED_PAGES=false
[account id].dkr.ecr.[region].amazonaws.com/tdr-auth-server:[your build tag]
```
* `KEYCLOAK_ADMIN`: root Keycloak username
* `KEYCLOAK_ADMIN_PASSWORD`: password for the root Keycloak user
* `KC_BOOTSTRAP_ADMIN_USERNAME`: root Keycloak username
* `KC_BOOTSTRAP_ADMIN_PASSWORD`: password for the root Keycloak user
* `KEYCLOAK_IMPORT`: Location of the generated Keycloak TDR realm json file that contains the configuration for the TDR realm
* `REALM_ADMIN_CLIENT_SECRET`: tdr realm admin client secret value
* `CLIENT_SECRET`: tdr client secret value
Expand Down
1 change: 1 addition & 0 deletions keycloak.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ spi-events-listener-event-publisher-enabled=true
spi-events-listener-jboss-logging-enabled=true
features=client-secret-rotation,admin-fine-grained-authz
health-enabled=true
spi-group-jpa-escape-slashes-in-group-path=true
Loading