-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: get child groups and get unregistered required actions (#484)
* chore: update keycloak image version and fix docker compose * feat: get child groups * docs: update readme * chore: update health check endpoint * chore: update docker compose * test: update tests to be compatible with KC 25 * feat: get unregisterd required actions * test: update test create and get required action * feat: get child group params * docs: update readme --------- Co-authored-by: Nerzal <[email protected]>
- Loading branch information
1 parent
d77c788
commit 8867dd1
Showing
7 changed files
with
132 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
FROM quay.io/keycloak/keycloak:19.0 | ||
FROM quay.io/keycloak/keycloak:25.0.1 | ||
COPY testdata data/import | ||
WORKDIR /opt/keycloak | ||
ENV KC_HOSTNAME=localhost | ||
ENV KEYCLOAK_USER=admin | ||
ENV KEYCLOAK_PASSWORD=secret | ||
ENV KEYCLOAK_ADMIN=admin | ||
ENV KEYCLOAK_ADMIN_PASSWORD=secret | ||
ENV KC_FEATURES=account-api,account2,authorization,client-policies,impersonation,docker,scripts,upload_scripts,admin-fine-grained-authz | ||
ENV KC_HEALTH_ENABLED=true | ||
ENV KC_FEATURES=account-api,account3,authorization,client-policies,impersonation,docker,scripts,admin-fine-grained-authz | ||
RUN /opt/keycloak/bin/kc.sh import --file /data/import/gocloak-realm.json | ||
ENTRYPOINT ["/opt/keycloak/bin/kc.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters