Cloudstack integration with Keycloak
layout: post title: “Testing CloudStack Integration with KeyCloak” date: 2025-10-29 categories: [cloudstack, keycloak, integration, testing] Testing CloudStack Integration with KeyCloak Steps to Test Keycloak with CloudStack Set up Docker environment On a Linux host, ensure Docker is installed and that there’s connectivity to the CloudStack Management server. Example setup: Linux host IP: 10.0.32.236 CloudStack Management server IP: 10.0.34.45 Run the Keycloak container docker pull quay.io/keycloak/keycloak:23.0.6 docker run -d -p 8080:8080 \ -e KEYCLOAK_ADMIN=admin \ -e KEYCLOAK_ADMIN_PASSWORD=password \ -e KC_PROXY=edge \ --restart always \ -v /keycloak:/opt/jboss/keycloak/standalone/data \ --network=host \ quay.io/keycloak/keycloak:23.0.6 start-dev Access the Keycloak UI ...