NVIDIA open-sources OSMO to unify physical AI training, simulation, and testing
NVIDIA has released OSMO, an open-source, Kubernetes-native workflow orchestrator designed to streamline the development of physical AI. The tool addresses the fragmentation in robotics development by allowing engineers to define complex pipelines—spanning data-center training, workstation simulation, and edge-device testing—in a single YAML file. This eliminates the need for custom glue scripts…
Key points
- OSMO unifies training, simulation, and edge testing into a single YAML workflow across heterogeneous Kubernetes clusters.
- The Apache-2.0 licensed tool supports GB200, RTX, and Jetson hardware, with NVLink-aware scheduling and enhanced security features.
- NVIDIA claims OSMO’s content-addressable datasets can cut storage costs by 10 to 100x while integrating with AI coding agents.
OSMO routes tasks to specific hardware pools, such as GB200 clusters for training, RTX GPUs for Isaac Sim, and Jetson AGX Thor for hardware-in-the-loop validation. The latest release, version 6.3.1, includes enhanced security features like RBAC and OAuth2, as well as NVLink-aware scheduling. NVIDIA claims the system’s content-addressable datasets can reduce storage requirements by up to 100x. The project is Apache-2.0 licensed and integrates with major coding agents like Claude Code and Cursor, aiming to make physical AI development more accessible and efficient.
NVIDIA Open-Sources OSMO: One YAML Orchestrates Physical AI Training, Simulation, and Robot Testing
MarkTechPost · 14 September 2026
Robot developers do not have one compute problem. They have 3. A policy is trained on GB200 or H100 clusters, tested in Isaac Sim on RTX GPUs, then validated on a Jetson mounted inside a real robot. Each tier has its own cluster, its own scheduler, and its own glue scripts. NVIDIA OSMO is NVIDIA’s answer to that fragmentation: an open-source, Kubernetes-native workflow orchestrator that lets a team describe the whole pipeline in a single YAML file and run it across every tier without touching infrastructure code.
Deployable? Yes. OSMO is Apache-2.0 licensed, ships Helm charts and containers on NGC, and has a local quickstart that runs the full control plane on a workstation with KIND.
The Three Computer Problem
NVIDIA frames physical AI as a three computer problem. Training happens on data-center GPUs. Simulation, physics, and sensor rendering happen on workstation-class RTX hardware. Deployment and hardware-in-the-loop (HIL) testing happen on edge devices such as Jetson AGX Thor, usually on premises. Each tier usually gets its own tooling, and the handoffs are where custom scripts accumulate.
OSMO treats all 3 as backends of one control plane. Each backend is a Kubernetes cluster registered through the CLI. Workflows never name a cluster. They name a platform (for example gb200, rtx-pro-6000, or jetson-agx-thor) and OSMO routes the task to a pool that offers it.
What a Workflow Looks Liake
The Repo’s canonical example is 3 tasks cAhained by data:A
simulationruns an Isaac Sim container onrtx-pro-6000train-policyruns a PyTorch container ongb200with 8 GPUs, taking the simulation task’s output as inputevaluate-thorruns a ROS app onjetson-agx-thor, consuming the trained policy and writing results to a named dataset
Dependencies come from inputs, persistence from outputs, and placement from platform. The user guide covers serial and parallel task groups, Jinja templating for parameterized workflows, retry policies, and HIGH/NORMAL/LOW priorities with preemption and GPU borrowing across pools.
Key Capabilities
- Portability : The same YAML runs on a laptop (Docker/KIND) or on EKS, AKS, GKE, on-premise, or air-gapped clusters. The 6.3.0 release added a multi-provider
deploy-k8s.shthat provisions OSMO on Azure AKS, AWS EKS, microk8s, or any existing cluster, with storage wiring for MinIO, Azure Blob, AWS S3, or bring-your-own S3. - Interactive development : Developers can launch VS Code, Jupyter, or SSH sessions on a remote GPU node,
execinto running tasks, port-forward services, andrsyncfiles in both directions. Version 6.3.0 addedosmo workflow rsync downloadwith a live progress bar. - Scheduling : OSMO uses the NVIDIA KAI Scheduler by default. Release 6.2.8 added NVLink topology-aware placement for multi-GPU tasks. Release 6.3.0 made
exec_timeoutandqueue_timeoutper group, so a stalled simulation group no longer kills sibling training groups. - Data : The project describes content-addressable datasets with deduplication that it claims can cut storage by 10 to 100x. Note that the standalone
osmo datasetCLI and/datasetsAPI were deprecated in 6.3.0 and are slated for removal in 6.4, with workflow-managed dataset outputs as the replacement. - Security and identity : Since 6.2.8 OSMO ships an RBAC authorization sidecar, OAuth2 proxy integration with device-code login, and identity-provider user mapping. Release 6.3.0 added TLS termination at the Envoy gateway and cloud workload identity (Azure Workload Identity, AWS IRSA/Pod Identity) so services no longer mount storage keys as Kubernetes Secrets. Release 6.3.1 tightened the default
osmo-userrole to the default pool. - Agent integration : The repository ships an AGENTS.md, a skills directory, and an MCP deployment guide. At GTC 2026 NVIDIA said OSMO integrates with Claude Code, OpenAI Codex, and Cursor so coding agents can submit, monitor, and debug pipelines.
Interactive Explainer: Watch OSMO Route One Workflow Across 3 Compute Tiers
Press Run workflow to see how OSMO schedules the README example task by task. Click any tier or step number to inspect what happens there.
Key Takeaways
- OSMO orchestrates training, simulation, and edge HIL tasks from one YAML across heterogeneous Kubernetes clusters
- Apache-2.0, Helm charts on NGC, latest release 6.3.1 (June 2026), local KIND quickstart available
- KAI Scheduler default, NVLink-aware placement, per-group timeouts, RBAC and OAuth2 built in
- Battle-tested on GR00T, Isaac Lab, Isaac Sim, and Isaac ROS; Azure and Nebius integrations exist
- Dataset CLI is deprecated in 6.3 and removed in 6.4; plan migrations accordingly
Check out the GitHub, Documentation, Releases, Cookbook and NVIDIA OSMO page. All credit goes to the researcher of this project. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.
Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us
This text was published by MarkTechPost and written by Asif Razzaq. It is reproduced here with attribution so you can read it in full; the rights remain with the publisher. Read it at the source ↗
The headline, key points and digest above were generated by Digest AI's editorial model from the linked sources. Automated summaries can contain errors: the sources are the record. Spotted a mistake? Tell us.
More in Agents & Tools
All →- OpenAI adds ‘Reference my writing style’ feature to ChatGPT, lets AI mimic your voice · 24 src
- Occamy-1.0 Introduces Cost‑Efficient 35B Co‑Work Agent Model · 1 src
- HarnessDev Finds LLM‑Built Agent Harnesses Strong in Writing, Weak in Code Tasks · 2 src
- Meta launches Muse, a personal AI agent for everyday tasks on iOS and Android · 25 src
- Google creates empty security permission for AI agents on Android · 1 src
Comments
via GitHub Discussions