community.general/tests/integration/targets/keycloak_component_info
Felix Fontein a9e892952d
[stable-10] Adjust YAML files (#10233) (#10244)
Adjust YAML files (#10233)

Adjust YAML files.

(cherry picked from commit eaa5e07b28)
2025-06-15 10:02:03 +02:00
..
tasks [stable-10] Adjust YAML files (#10233) (#10244) 2025-06-15 10:02:03 +02:00
vars Keycloak components info (#7694) 2023-12-28 18:11:55 +01:00
aliases Keycloak components info (#7694) 2023-12-28 18:11:55 +01:00
README.md Keycloak components info (#7694) 2023-12-28 18:11:55 +01:00

Running keycloak_component_info module integration test

To run Keycloak component info module's integration test, start a keycloak server using Docker:

docker run -d --rm --name myldap -p 389:389 minkwe/389ds:latest
docker run -d --rm --name mykeycloak --link myldap:ldap.example.com -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=password quay.io/keycloak/keycloak:latest start-dev --http-relative-path /auth

Run integration tests: ansible-test integration -v keycloak_component_info --allow-unsupported --docker fedora35 --docker-network host

Cleanup:

docker stop myldap mykeycloak