Components

Keycloak

Identity and access management component for Runtime authentication and component SSO enrollment.

Agentic Friendly

Component Category

Access and security / identity and access management

Component Description

Keycloak is the identity and access management platform used to authenticate users and services. It centralizes identity, login flows, and access-related integration across the platform.

Why It Is Used

In BullSequana AI Runtime, Keycloak provides centralized authentication, single sign-on, identity federation, and user access management across platform services. It helps keep access consistent across interfaces and APIs instead of duplicating authentication logic in each component.

How Components Get SSO

Platform components do not configure Keycloak manually. Instead, each component that needs SSO is enrolled automatically through a pair of Kubernetes jobs managed by the platform CLI.

Enrollment flow

When a component with SSO enabled is synced by ArgoCD, two Kubernetes jobs handle registration and deregistration:

  1. Setup job (negative sync wave) -- runs before the component is deployed. It waits for Keycloak to be reachable, authenticates with dedicated enroll credentials, then creates or updates:

    • a Keycloak OIDC client for the component (client ID, secret, redirect URIs, scopes, protocol mappers)
    • any realm groups the component needs (for example, admin or user groups)
    • any realm roles the component defines
    • group-to-role mappings that connect groups to roles
    • service account client role mappings when machine-to-machine access is needed
    • membership of the admin user in all declared groups
  2. PostDelete cleanup job -- runs when the component's Argo CD application is deleted. It removes the OIDC client, groups, and roles that the setup job created, so Keycloak stays clean.

Both jobs are idempotent. They detect existing resources and only modify them when the desired state has drifted from the current Keycloak configuration.

What gets registered per component

Each SSO-enabled component provides a configuration secret (<component>-keycloak-sso-config) containing:

FilePurpose
client.jsonFull OIDC client definition: client ID, secret, redirect URIs, scopes, protocol mappers, flow settings
groups.jsonRealm groups to create, optionally with attributes and role bindings
roles.jsonRealm roles to create
service-account-client-roles.jsonClient role mappings for service accounts

The platform CLI generates this secret from the component's [sso] table in variables.toml, using a shared template.

How the enroll credentials work

The setup and cleanup jobs authenticate against Keycloak using a shared secret called keycloak-enroll-credentials. This secret contains:

  • username and password for a dedicated enroll user
  • keycloak-url pointing to the internal Keycloak service
  • realm identifying the target realm (typically dataplatform)

These credentials are generated by the platform CLI and distributed to every namespace that has SSO enabled.

Enabling or disabling SSO for a component

Each component has an enabled field in its [sso] table in variables.toml. It defaults to true. When set to false:

  • the SSO config secret is not generated
  • the setup and cleanup jobs are not created
  • the component deploys without Keycloak integration

See Configuration Model -- SSO scope for the full list of components and how to control SSO at the deployment level.

Components with SSO support

The following components currently support automatic SSO enrollment:

Runtime: Grafana, PgAdmin, Rook Ceph RGW, ArgoCD

CoreAI: CoreAI Web Portal, CoreAI API (via LLM Backend), MLflow, Temporal, Model Installer, LiteLLM

Data: Superset, Kafka (Strimzi), Airbyte (via OAuth2 Proxy), Attu (via OAuth2 Proxy)

Learn More

Deployment notes

Keycloak deploys into the keycloak namespace at sync wave 7 in the common tier. It runs as a stateless server backed by the CNPG PostgreSQL cluster, with an init container that waits for database readiness before starting. SSO client registrations for all platform components are stored in a shared secret managed by the platform CLI.

Interacts With

  • Temporal, Grafana, PgAdmin, Argo CD, MLflow, LiteLLM, Superset, Kafka, and CoreAI services, which use Keycloak for login and OIDC-based access through automatic SSO enrollment.
  • OAuth2 Proxy, which delegates authentication to Keycloak for services that lack native SSO (Airbyte, Attu).

On this page