Deploy Service#

This guide provides step-by-step instructions for deploying OSMO service components on a Kubernetes cluster.

Components Overview#

OSMO deployment consists of several main components:

Component

Description

API Service

Workflow operations and API endpoints

Router Service

Routing traffic to the API Service

Web UI Service

Web interface for users

Worker Service

Background job processing

Logger Service

Log collection and streaming

Agent Service

Client communication and status updates

Delayed Job Monitor

Monitoring and managing delayed background jobs

../../_images/service_components.svg

Step 1: Configure PostgreSQL#

Create a database for OSMO using the following command. Omit export OSMO_PGPASSWORD=... and PGPASSWORD=$OSMO_PGPASSWORD if PostgreSQL was configured without a password.

$ export OSMO_DB_HOST=<your-db-host>
$ export OSMO_PGPASSWORD=<your-postgres-password>
$ kubectl apply -f - <<EOF
apiVersion: v1
kind: Pod
metadata:
  name: osmo-db-ops
spec:
  containers:
    - name: osmo-db-ops
      image: alpine/psql:17.5
      command: ["/bin/sh", "-c"]
      args:
        - "PGPASSWORD=$OSMO_PGPASSWORD psql -U postgres -h $OSMO_DB_HOST -p 5432 -d postgres -c 'CREATE DATABASE osmo;'"
  restartPolicy: Never
EOF

Check that the process Completed with kubectl get pod osmo-db-ops. Then delete the pod with:

$ kubectl delete pod osmo-db-ops

Step 2: Create namespace and secrets#

Before creating secrets, register OSMO as an OAuth2/OIDC application in your identity provider and obtain the client ID, client secret, and endpoints (token, authorize, JWKS, issuer). See Identity Provider (IdP) Setup for provider-specific steps.

Create a namespace to deploy OSMO:

$ kubectl create namespace osmo

Create secrets for the database and Redis:

$ kubectl create secret generic db-secret --from-literal=db-password=<your-db-password> --namespace osmo
$ kubectl create secret generic redis-secret --from-literal=redis-password=<your-redis-password> --namespace osmo

Create the secret used by OAuth2 Proxy for the client secret and session cookie encryption. Use the client secret from your IdP application registration:

$ kubectl create secret generic oauth2-proxy-secrets \
  --from-literal=client_secret=<your-idp-client-secret> \
  --from-literal=cookie_secret=$(openssl rand -base64 32) \
  --namespace osmo

Workflow storage credentials (skip if using workload identity)

OSMO needs to read/write two storage buckets for workflow logs and workflow data. If you plan to use cloud workload identity (AWS IRSA, Azure Workload Identity, GCP Workload Identity) — covered in Step 3: Configure Storage Access — skip this subsection and come back only if workload identity is not an option for your deployment.

Create the workflow log credentials Secret:

$ kubectl create secret generic osmo-workflow-log-cred --namespace osmo \
    --from-literal=endpoint=s3://my-bucket/workflow-logs \
    --from-literal=region=us-east-1 \
    --from-literal=access_key_id=<your-access-key-id> \
    --from-literal=access_key=<your-secret-access-key>

Create the workflow data credentials Secret (you can use the same bucket or a different one):

$ kubectl create secret generic osmo-workflow-data-cred --namespace osmo \
    --from-literal=endpoint=s3://my-bucket/workflow-data \
    --from-literal=region=us-east-1 \
    --from-literal=access_key_id=<your-access-key-id> \
    --from-literal=access_key=<your-secret-access-key>

Note

For non-AWS S3-compatible services (MinIO, Ceph, LocalStack), add an --from-literal=override_url=http://minio:9000 flag. Leave it out for standard AWS S3.

Create the master encryption key (MEK) for database encryption:

  1. Generate a new master encryption key:

    The MEK should be a JSON Web Key (JWK) with the following format:

    {"k":"<base64-encoded-32-byte-key>","kid":"key1","kty":"oct"}
    
  2. Generate the key using OpenSSL:

    # Generate a 32-byte (256-bit) random key and base64 encode it
    $ export RANDOM_KEY=$(openssl rand -base64 32 | tr -d '\n')
    
    # Create the JWK format
    $ export JWK_JSON="{\"k\":\"$RANDOM_KEY\",\"kid\":\"key1\",\"kty\":\"oct\"}"
    
  3. Base64 encode the entire JWK:

    $ export ENCODED_JWK=$(echo -n "$JWK_JSON" | base64 | tr -d '\n')
    $ echo $ENCODED_JWK
    
  4. Create the ConfigMap with your generated MEK:

    $ kubectl apply -f - <<EOF
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: mek-config
      namespace: osmo
    data:
      mek.yaml: |
        currentMek: key1
        meks:
          key1: $ENCODED_JWK
    EOF
    

Warning

Security Considerations:

  • Store the original JWK securely as you’ll need it for backups and recovery

  • Never commit the MEK to version control

  • Use a secure key management system, such as Vault or secrets manager in production

  • The MEK is used to encrypt sensitive data in the database

Example MEK generation script:

#!/bin/bash
# Generate MEK for OSMO

# Generate random 32-byte key
$ export RANDOM_KEY=$(openssl rand -base64 32 | tr -d '\n')

# Create JWK
$ export JWK_JSON="{\"k\":\"$RANDOM_KEY\",\"kid\":\"key1\",\"kty\":\"oct\"}"

# Base64 encode the JWK
$ export ENCODED_JWK=$(echo -n "$JWK_JSON" | base64 | tr -d '\n')
$ echo "Encoded JWK: $ENCODED_JWK"

# Create ConfigMap
$ kubectl apply -f - <<EOF
apiVersion: v1
kind: ConfigMap
metadata:
  name: mek-config
  namespace: osmo
data:
  mek.yaml: |
    currentMek: key1
    meks:
      key1: $ENCODED_JWK
EOF

Step 3: Configure Storage Access#

OSMO needs credentials to access two buckets: workflow_log and workflow_data. The service and worker pods read/write both buckets (uploading logs, checkpointing task specs, etc.). Pick one of the two approaches below.

Note

workflow_log and workflow_data are OSMO-managed buckets for internal workflow logs, task specs, and intermediate outputs passed between task groups. They are distinct from user data buckets referenced in workflow task inputs / outputs (the S3/Swift/GCS paths users name in their specs). User data is accessed via per-workflow credentials by default; for teams that share a pool and want pool-wide cloud access without supplying credentials each time, see Workload Identity for Workflow Pods as a follow-up.

Static credentials#

Use the two Kubernetes Secrets you created in Step 2 (osmo-workflow-log-cred and osmo-workflow-data-cred). In the next step, reference them by secretName and list them under secretRefs so the chart mounts them. No ServiceAccount annotations are needed.

In Step 4, follow the # static credentials comments inline in the osmo_values.yaml sample to flip the sample from workload identity to static credentials.

Step 4: Prepare values#

Create a values file for each OSMO component.

See also

See Identity Provider (IdP) Setup for the IdP-specific values you need to configure (client ID, endpoints, JWKS URI) and Authentication Flow for the request flow.

Create osmo_values.yaml for the OSMO service with the following sample.

osmo_values.yaml
# Global configuration shared across all OSMO services
global:
  osmoImageLocation: nvcr.io/nvidia/osmo
  osmoImageTag: <version>                        # chart version
  serviceAccountName: osmo

  logs:
    enabled: true
    logLevel: DEBUG
    k8sLogLevel: WARNING

# ServiceAccount the chart deploys. Uncomment ONE annotation below
# for your cloud provider.
#
# For static credentials: delete this whole serviceAccount block —
# the default ServiceAccount needs no cloud annotation. # (4)
serviceAccount:
  create: true
  annotations:
    # Uncomment ONE line for your cloud provider:
    # eks.amazonaws.com/role-arn: arn:aws:iam::<account-id>:role/<role-name>       # AWS (EKS + IRSA)
    # azure.workload.identity/client-id: <managed-identity-client-id>              # Azure (AKS Workload Identity)
    # iam.gke.io/gcp-service-account: <gsa>@<project>.iam.gserviceaccount.com      # GCP (GKE Workload Identity)

# Individual service configurations
services:
  # Configuration file service settings
  configFile:
    enabled: true

  # PostgreSQL database configuration
  postgres:
    enabled: false
    serviceName: <your-postgres-host>
    port: 5432
    db: <your-database-name>
    user: postgres

  # Redis cache configuration
  redis:
    enabled: false  # Set to false when using external Redis
    serviceName: <your-redis-host>
    port: 6379
    tlsEnabled: true  # Set to false if your Redis does not require TLS

  # Main API service configuration
  service:
    scaling:
      minReplicas: 1
      maxReplicas: 3
    hostname: <your-domain>
    auth:
      enabled: true
      device_endpoint: <idp-device-auth-url>
      device_client_id: <client-id>
      browser_endpoint: <idp-authorize-url>
      browser_client_id: <client-id>
      token_endpoint: <idp-token-url>
      logout_endpoint: <idp-logout-url>

    # Resource allocation
    resources:
      requests:
        cpu: "1"
        memory: "1Gi"
      limits:
        memory: "1Gi"

  # Default admin (no IdP): enable to create an admin user and access token at startup
  defaultAdmin:
    enabled: false  # Set true when not using an IdP
    username: "admin"
    passwordSecretName: default-admin-secret
    passwordSecretKey: password

  # Worker service configuration
  worker:
    scaling:
      minReplicas: 1
      maxReplicas: 3
    resources:
      requests:
        cpu: "500m"
        memory: "400Mi"
      limits:
        memory: "800Mi"

  # Logger service configuration
  logger:
    scaling:
      minReplicas: 1
      maxReplicas: 3
    resources:
      requests:
        cpu: "200m"
        memory: "256Mi"
      limits:
        memory: "512Mi"

  # Agent service configuration
  agent:
    scaling:
      minReplicas: 1
      maxReplicas: 1
    resources:
      requests:
        cpu: "100m"
        memory: "128Mi"
      limits:
        memory: "256Mi"

  # Delayed job monitor configuration
  delayedJobMonitor:
    replicas: 1
    resources:
      requests:
        cpu: "200m"
        memory: "512Mi"
      limits:
        memory: "512Mi"

  # OSMO configs (storage credentials for the service and worker pods).
  # Pods get cloud credentials via the annotated ServiceAccount above.
  configs:
    enabled: true
    # Static credentials path: # (4)
    # secretRefs:
    #   - secretName: osmo-workflow-log-cred
    #   - secretName: osmo-workflow-data-cred

    workflow:
      workflow_log:
        credential:
          endpoint: s3://my-bucket/workflow-logs
          region: us-east-1
          # secretName: osmo-workflow-log-cred         # static credentials (replaces endpoint + region) # (4)
      workflow_data:
        credential:
          endpoint: s3://my-bucket/workflow-data
          region: us-east-1
          # secretName: osmo-workflow-data-cred        # static credentials (replaces endpoint + region) # (4)

# Gateway — deploys Envoy, OAuth2 Proxy, and Authz as separate services
gateway:
  envoy:
    hostname: <your-domain>

    # IDP hostname for JWT JWKS fetching
    idp:
      host: login.microsoftonline.com  # hostname from jwt.providers.jwks_uri

    # Internal JWKS cluster — points to osmo-service for OSMO-issued JWTs
    internalJwks:
      enabled: true
      cluster: osmo-service-jwks
      host: osmo-service
      port: 80

    # JWT validation: configure providers for your IdP and (if using access tokens) for OSMO-issued tokens
    jwt:
      user_header: x-osmo-user
      providers:
      # Example: Microsoft Entra ID. Add or replace with your IdP (see identity_provider_setup).
      - issuer: https://login.microsoftonline.com/<tenant-id>/v2.0  # (1)
        audience: <client-id>
        jwks_uri: https://login.microsoftonline.com/<tenant-id>/discovery/v2.0/keys
        user_claim: preferred_username
        cluster: idp
      # OSMO-issued JWTs (e.g. for access-token-based access)
      - issuer: osmo
        audience: osmo
        jwks_uri: http://osmo-service/api/auth/keys
        user_claim: unique_name
        cluster: osmo-service-jwks

  # OAuth2 Proxy configuration
  # Set OIDC issuer URL and client ID from your IdP (e.g. Microsoft Entra ID, Google). See identity_provider_setup.
  oauth2Proxy:
    enabled: true
    provider: oidc
    oidcIssuerUrl: https://login.microsoftonline.com/<tenant-id>/v2.0  # (2)
    clientId: <client-id>  # (3)
    cookieDomain: .<your-domain>
    scope: "openid email profile"
    useKubernetesSecrets: true
    secretName: oauth2-proxy-secrets
    clientSecretKey: client_secret
    cookieSecretKey: cookie_secret

  # Upstream services that the gateway routes to
  upstreams:
    service:
      host: osmo-service
      port: 80
    router:
      host: osmo-router
      port: 80
    ui:
      host: osmo-ui
      port: 80
  1. Issuer URL from your IdP. See Identity Provider (IdP) Setup for provider-specific values.

  2. OIDC issuer URL from your IdP (same as the JWT issuer).

  3. Client ID from your IdP application registration.

  4. Static credentials path: see Step 3.

Create router_values.yaml for router with the following sample configurations:

router_values.yaml
# Global configuration shared across router services
global:
  osmoImageLocation: nvcr.io/nvidia/osmo
  osmoImageTag: <version>

  logs:
    enabled: true
    logLevel: DEBUG
    k8sLogLevel: WARNING

# Router service configurations
services:
  # Configuration file service settings
  configFile:
    enabled: true

  # Router service configuration
  service:
    scaling:
      minReplicas: 1
      maxReplicas: 2
    hostname: <your-domain>
    # webserverEnabled: true  # (Optional): Enable for UI port forwarding
    serviceAccountName: router

    # Resource allocation
    resources:
      requests:
        cpu: "500m"
        memory: "512Mi"
      limits:
        memory: "512Mi"

  # PostgreSQL database configuration
  postgres:
    serviceName: <your-postgres-hostname>
    port: 5432
    db: osmo
    user: postgres

Create ui_values.yaml for ui with the following sample configurations:

ui_values.yaml
# Global configuration shared across UI services
global:
  osmoImageLocation: nvcr.io/nvidia/osmo
  osmoImageTag: <version>

# UI service configurations
services:
  # UI service configuration
  ui:
    hostname: <your-domain>
    apiHostname: osmo-gateway:80

    # Resource allocation
    resources:
      requests:
        cpu: "500m"
        memory: "512Mi"
      limits:
        memory: "512Mi"

Important

Replace all <your-*> placeholders with your actual values before applying. You can find them in the highlighted sections in all the files above.

Note

Refer to the README page for detailed configuration options, including gateway configuration.

See also

Datasets (Optional)

To configure storage buckets for users to store OSMO datasets, see Dataset Buckets in the Advanced Configuration section.

Step 5: Deploy Components#

Deploy the components in the following order:

  1. Deploy API Service:

# add the helm repository
$ helm repo add osmo https://helm.ngc.nvidia.com/nvidia/osmo
$ helm repo update

# deploy the service
$ helm upgrade --install service osmo/service -f ./osmo_values.yaml -n osmo
  1. Deploy Router:

$ helm upgrade --install router osmo/router -f ./router_values.yaml -n osmo
  1. Deploy UI:

$ helm upgrade --install ui osmo/web-ui -f ./ui_values.yaml -n osmo

Step 6: Verify Deployment#

  1. Verify all pods are running:

    $ kubectl get pods -n osmo
    NAME                            READY   STATUS    RESTARTS       AGE
    osmo-agent-xxx                  2/2     Running   0              <age>
    osmo-delayed-job-monitor-xxx    1/1     Running   0              <age>
    osmo-logger-xxx                 2/2     Running   0              <age>
    osmo-router-xxx                 2/2     Running   0              <age>
    osmo-service-xxx                2/2     Running   0              <age>
    osmo-ui-xxx                     2/2     Running   0              <age>
    osmo-worker-xxx                 1/1     Running   0              <age>
    
  2. Verify all services are running:

    $ kubectl get services -n osmo
      NAME                TYPE           CLUSTER-IP        EXTERNAL-IP   PORT(S)           AGE
      osmo-agent          ClusterIP      xxx               <none>        80/TCP            <age>
      osmo-gateway        LoadBalancer   xxx               <external>    80/TCP,443/TCP    <age>
      osmo-logger         ClusterIP      xxx               <none>        80/TCP            <age>
      osmo-router         ClusterIP      xxx               <none>        80/TCP            <age>
      osmo-service        ClusterIP      xxx               <none>        80/TCP            <age>
      osmo-ui             ClusterIP      xxx               <none>        80/TCP            <age>
    
  3. Verify gateway service:

    $ kubectl get services -n osmo | grep gateway
      osmo-gateway        LoadBalancer   xxx               <external>    80/TCP,443/TCP    <age>
    
  4. Verify the ConfigMap loaded successfully:

    $ kubectl describe configmap osmo-service-configs -n osmo | tail -5
    

    Healthy output shows no events, or a single Normal ConfigMapReloaded event after a recent change. If you see a Warning ConfigMapReloadFailed event, the service is still serving from its last good snapshot but the latest values were rejected — see Troubleshooting below.

Step 7: Post-deployment Configuration#

  1. Configure DNS records to point to the osmo-gateway service’s external IP or hostname. For example, create a CNAME record for osmo.example.com pointing to the LoadBalancer hostname shown in kubectl get svc osmo-gateway -n osmo.

  2. Test authentication flow

  3. Configure IdP role mapping to map your IdP groups to OSMO roles: IdP Role Mapping and Sync Modes

  4. Verify access to the UI at https://osmo.example.com through your domain

Troubleshooting#

  1. Check pod status and logs:

    kubectl get pods -n <namespace>
    
    # check if all pods are running, if not, check the logs for more details
    kubectl logs -f <pod-name> -n <namespace>
    
  2. Common issues and their resolutions:

    • Database connection failures: Verify the database is running and accessible

    • Authentication configuration issues: Verify the authentication configuration is correct

    • Gateway routing problems: Verify the gateway pods are running and the osmo-gateway service has an external IP (kubectl get svc osmo-gateway -n osmo)

    • Resource constraints: Verify the resource limits are set correctly

    • Missing secrets or incorrect configurations: Verify the secrets are created correctly and the configurations are correct

    • ConfigMap validation errors: Pod in CrashLoopBackOff after a Helm upgrade — check kubectl describe configmap osmo-service-configs for the validation error

ConfigMap validation failures#

When the service loads invalid values from the osmo-service-configs ConfigMap, the failure surfaces in one of two ways depending on when it is detected.

Pod stuck in CrashLoopBackOff after Helm upgrade#

Symptom: kubectl get pods shows the osmo-service pod’s restart counter climbing and the status cycling between Running and CrashLoopBackOff.

Diagnose: the validation error is recorded both in the crashed pod’s previous logs and as a Kubernetes Event attached to the ConfigMap.

$ kubectl logs <pod> -c osmo-service --previous -n osmo | tail -20
...
RuntimeError: ConfigMap load failed at startup (/etc/osmo/configs/config.yaml). Refusing to serve.

$ kubectl describe configmap osmo-service-configs -n osmo | tail -5
Events:
  Type     Reason                 Age   From                           Message
  ----     ------                 ----  ----                           -------
  Warning  ConfigMapReloadFailed  30s   osmo-service-configmap-loader  ConfigMap validation failed, keeping previous config: <specific error>

The exact error message points at the offending field — typically a Pydantic type error, a YAML parse error, or a section missing a required structure.

Fix: correct the Helm values and re-upgrade. The new pod loads the corrected values on its next restart attempt.

Why the service crashes rather than falling back to the database: crashing preserves rolling-update protection — healthy replicas running the previous version keep serving while the bad-values pod stalls, and operators get an immediate, loud signal instead of a silent drift to database-backed configuration.

New config values rejected after Helm upgrade#

Symptom: helm upgrade succeeded and the ConfigMap was updated, but the new values do not seem to have taken effect and a ConfigMapReloadFailed event is attached to the ConfigMap. All osmo-service pods remain Running.

Behavior: when a live pod detects an invalid ConfigMap update, it keeps serving the previously loaded (valid) values from memory. There is no availability impact, but the new values will not apply until the ConfigMap is valid.

Diagnose:

$ kubectl describe configmap osmo-service-configs -n osmo | tail -5

# or, for the raw events:
$ kubectl get events \
    --field-selector involvedObject.name=osmo-service-configs \
    -n osmo

Fix: correct the Helm values and re-upgrade. Pods pick up the corrected ConfigMap within a few seconds of the update and emit a single Normal ConfigMapReloaded event on recovery.