Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion auth-callout/devspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ deployments:
name: keycloak-realm-import
namespace: keycloak
data:
realm-csc.json: |
realm-auth-callout.json: |
{
"id": "auth-callout",
"realm": "auth-callout",
Expand Down
3 changes: 2 additions & 1 deletion local/infra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,8 @@ kubectl get pods -n keycloak --context kind-csc
# Check logs
kubectl logs -n keycloak -l app.kubernetes.io/name=keycloak --context kind-csc

# Check realm import ConfigMap
# Check realm import ConfigMap. The import key is realm-event-bus.json and the
# Keycloak realm inside that file is event-bus.
kubectl get configmap keycloak-realm-import -n keycloak --context kind-csc -o yaml

# Test token endpoint via external IP using client credentials
Expand Down
3 changes: 1 addition & 2 deletions local/infra/scripts/setup-keycloak.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,11 @@ deploy_to_cluster() {
echo "Deploying Keycloak Operator to CSC cluster..."

if kind get clusters | grep -q "^csc$"; then
deploy_to_cluster "csc" "${PROJECT_ROOT}/infra/keycloak/realm-csc.json"
deploy_to_cluster "csc" "${PROJECT_ROOT}/infra/keycloak/realm-event-bus.json"
else
echo "ERROR: CSC cluster not found"
exit 1
fi

echo "Keycloak Operator deployment complete on CSC cluster"
echo "All clusters will use Keycloak at http://172.18.200.1"