Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions deployments/brev/setup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION. All rights reserved.
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -56,7 +56,6 @@ NVIDIA_CTK_INSTALL_VERSION="1.18.1-1"
# Helm chart versions
GPU_OPERATOR_VERSION="v25.10.0"
KAI_SCHEDULER_VERSION="v0.8.1"
OSMO_QUICKSTART_VERSION="1.0.0"

# ============================================
# Step 0: System Configuration
Expand Down Expand Up @@ -350,10 +349,10 @@ print_status "KAI Scheduler installed successfully"
# ============================================
print_status "Installing OSMO (this may take 5-10 minutes)..."

cd ~/osmo-deployment
helm fetch https://helm.ngc.nvidia.com/nvidia/osmo/charts/quick-start-${OSMO_QUICKSTART_VERSION}.tgz
helm repo add osmo https://helm.ngc.nvidia.com/nvidia/osmo
helm repo update

helm upgrade --install osmo quick-start-${OSMO_QUICKSTART_VERSION}.tgz \
helm upgrade --install osmo osmo/quick-start \
--namespace osmo \
--create-namespace \
--set web-ui.services.ui.hostname="" \
Expand Down
7 changes: 4 additions & 3 deletions docs/deployment_guide/appendix/deploy_local.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
..
SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -288,8 +288,9 @@ Deploy the complete OSMO platform with a single Helm command:

.. code-block:: bash

$ helm fetch https://helm.ngc.nvidia.com/nvidia/osmo/charts/quick-start-1.0.0.tgz
$ helm upgrade --install osmo quick-start-1.0.0.tgz \
$ helm repo add osmo https://helm.ngc.nvidia.com/nvidia/osmo
$ helm repo update
$ helm upgrade --install osmo osmo/quick-start \
--namespace osmo \
--create-namespace \
--wait
Expand Down