You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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):
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-1
Not 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.
The text was updated successfully, but these errors were encountered:
At the very beginning the
examples/README.md
refers to the directorydocker/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:strimzi-kafka-oauth/examples/docker/keycloak/compose.yml
Line 6 in 229daee
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
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 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.sh
Not 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...:...in order to be consistent with the rest of the example.
The text was updated successfully, but these errors were encountered: