-
Notifications
You must be signed in to change notification settings - Fork 103
Description
At the very beginning the examples/README.md refers to the directory docker/keycloak to spin up keycloak and run the demos. Following that path one can see the keycloak container image including image tag from qay.io registry that is used for the examples is here in this compose.yml:
| image: quay.io/keycloak/keycloak:23.0.5 |
Going further in the guide, one will run into an error trying to navigate to the script kcadm.sh. The directory in the guide is not correct for the current image version of keycloak referenced above (Currently 23.0.5):
strimzi-kafka-oauth/examples/README.md
Line 25 in 229daee
| cd /opt/jboss/keycloak |
As one can see, when logging into the container based on the image version used in the keycloak/compose.yaml the path to the script should rather be /opt/keycloak/
docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
17512408edb1 quay.io/keycloak/keycloak:23.0.5 "/opt/keycloak/bin/k…" 14 hours ago Up 14 hours 0.0.0.0:8080->8080/tcp, 0.0.0.0:8443->8443/tcp docker-keycloak-1docker exec -ti docker-keycloak-1 /bin/sh
ls /opt/keycloak/bin/
client federation-sssd-setup.sh kcadm.bat kcadm.sh kc.bat kcreg.bat kcreg.sh kc.shNot 100% sure where the difference between the guide and the actual situation in the container comes from (maybe a change that came with version upgrade of the imagequay.io/keycloak/keycloak, but has never been adjusted in the readme), but from perspective the path to the script kcadm.sh needs to be adjusted to...:
cd /opt/keycloak/
...in order to be consistent with the rest of the example.