community.general/tests/integration/targets/keycloak_client
Felix Fontein eaa5e07b28
Adjust YAML files (#10233)
Adjust YAML files.
2025-06-15 09:13:16 +02:00
..
tasks Adjust YAML files (#10233) 2025-06-15 09:13:16 +02:00
vars Fb keycloak client improvement (#9644) 2025-02-01 19:16:54 +01:00
README.md Fixes #1226 - keycloak_client detects changes on check_mode but not in run mode (#7881) 2024-02-17 12:31:45 +01:00

Running keycloak_client module integration test

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

docker run -d --rm --name mykeycloak -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=password quay.io/keycloak/keycloak:latest start-dev --http-relative-path /auth

Run the integration tests:

ansible-test integration -v keycloak_client --allow-unsupported --docker fedora35 --docker-network host

Cleanup:

docker stop mykeycloak