Skip to main content
You can install Odigos Central using the CLI or Helm chart.
Use the odigos pro central install command with --set flags:
odigos pro central install --set onPremToken=<token>
This installs:
  • central-backend
  • central-ui
  • redis (for state)
  • keycloak (as identity provider)

CLI Flags

FlagDefaultDescription
--set onPremToken(required)Your Odigos Enterprise license token
--set centralProxy.centralBackendURL(optional)URL of the central backend
--set auth.externalUrlhttp://localhost:8081Browser-accessible URL of the Central Backend for SSO redirect flows
--set auth.adminPassword(auto-generated)Admin password for Keycloak. If not provided, a random password is generated
--set auth.adminUsernameadminAdmin username for Keycloak
--namespace, -nodigos-centralTarget namespace for installation
--version(current)Specify a specific version to install
Example with all options:
odigos pro central install \
  --set onPremToken=<token> \
  --namespace odigos-central \
  --version v1.0.0