The Application Manager and Runtime Manager share the same container image and Helm chart. Refer to the Deployment Guidelines in the release notes to ensure compatibility and verify the correct version.
Infrastructure prerequisites
The Runtime Manager service requires the following components to be set up before it can be started:- PostgreSQL
- MongoDB
- Redis
- Kafka
- OAuth2 Authentication
Dependencies
Change the application name
Core service configuration
Database configuration
The Runtime Manager uses the same PostgreSQL (to store application data) and MongoDB (to manage runtime data) as application-manager. Configure these database connections with the following environment variables:PostgreSQL (Application data)
MongoDB (Runtime data)
Redis configuration
Runtime Manager uses Redis for caching. Configure Redis connection using the standard Redis environment variables. Quick reference:Both
SPRING_DATA_REDIS_* and SPRING_REDIS_* variable prefixes are supported. The SPRING_DATA_REDIS_* prefix is the modern Spring Boot standard and is recommended for new deployments.For advanced Redis deployment modes (Sentinel, Cluster) and SSL/TLS setup, see the Redis Configuration guide. Note that Sentinel and Cluster modes are only supported by the Events Gateway service.
Kafka configuration
Kafka connection
Kafka OAuth authentication
When using the
kafka-auth profile, the security protocol will automatically be set to SASL_PLAINTEXT and the SASL mechanism will be set to OAUTHBEARER.Kafka topics
Since the Runtime Manager shares the same container image as the Application Manager, it uses the same Kafka topic definitions. However, the Runtime Manager conditionally activates a listener for thebuild.runtime-data topic (based on spring.application.name=runtime-manager), which is how it receives runtime data from the Admin service.
Build topics
Consumer configuration
Process topics
Other topics
For the full list of application resource topics (export, import, sync, resource usages, etc.), see the Application Manager Kafka configuration.
Authentication configuration
Security type
Resource server (opaque-token introspection)
In 5.1.x, the Runtime Manager validates access tokens using opaque-token introspection against the identity provider’s introspect endpoint.
The introspection URI is derived automatically:
${SECURITY_OAUTH2_BASE_SERVER_URL}/realms/${SECURITY_OAUTH2_REALM}/protocol/openid-connect/token/introspect
Service account configuration
File storage configuration
S3-compatible storage is used for storing application files, exports, and imports. The Runtime Manager supports MinIO, AWS S3, and other S3-compatible storage solutions.
Ingress configuration
The Runtime Manager uses the standard FlowX.AI ingress pattern with three separate ingress configurations. For complete setup instructions including the full ingress template, CORS configuration, and troubleshooting, see the Ingress Configuration Guide.Public ingress
Service-specific values for Runtime Manager Public:- Ingress name:
runtime-manager-public - Service path:
/rtm/api/runtime(/|$)(.*) - Service name:
runtime-manager - Rewrite target:
/api/runtime/$2 - Fx-Workspace-Id: Required
Admin ingress
Service-specific values for Runtime Manager Admin:- Ingress name:
runtime-manager-admin - Service path:
/rtm/api/build-mgmt(/|$)(.*) - Service name:
runtime-manager - Rewrite target:
/api/build-mgmt/$2 - Fx-Workspace-Id: Required
Admin instances ingress
Service-specific values for Runtime Manager Admin Instances:- Ingress name:
runtime-manager-admin-instances - Service path:
/rtm/api/(runtime|runtime-internal)/(.*) - Service name:
runtime-manager - Rewrite target:
/api/$1/$2 - Fx-Workspace-Id: Required
Complete Ingress Configuration
View the centralized ingress guide for the complete configuration template, annotations reference, and best practices.
Note: Replace placeholders in environment variables with the appropriate values for your environment before starting the service.
Troubleshooting
Common issues
Database connection failures
Database connection failures
Symptoms: Service fails to start with database connection errors.Solutions:
- Verify the PostgreSQL database exists and is accessible
- Check that the database user has appropriate permissions
- Ensure network connectivity between the pod and PostgreSQL service
- Verify the JDBC URL format is correct
- For MongoDB, confirm the replica set is healthy and
retryWrites=falseis set in the connection URI
Kafka publishing failures
Kafka publishing failures
Symptoms: Messages not reaching consumers, runtime data not syncing between Admin and Runtime Manager.Solutions:
- Verify that
KAFKA_TOPIC_BUILD_RUNTIMEDATAresolves to the same value in both Admin and Runtime Manager - Check that
KAFKA_TOPIC_NAMING_ENVIRONMENTis consistent across services - Ensure Kafka broker addresses are correct and reachable
- Review consumer group IDs for conflicts with other deployments
- Check Kafka logs for authorization or connectivity errors
Service account authentication errors
Service account authentication errors
Symptoms: 401/403 errors when communicating with other FlowX services.Solutions:
- Verify the Keycloak service account (
flowx-runtime-manager-sa) is properly configured - Check that client secrets match between configuration and Keycloak
- Ensure the service account has required roles assigned
- Confirm
SECURITY_TYPEis set tooauth2(default for 5.1.x) - Verify the OAuth2 base server URL, realm, and token introspection URI are accessible
Related resources
Application Manager
Companion service sharing the same container image and Helm chart
Redis Configuration
Complete Redis setup including Sentinel and Cluster modes
Kafka Authentication
Configure Kafka security and authentication
IAM Configuration
Identity and access management setup

