Skip to content
Merged
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
fix helm chart names
Signed-off-by: Neal Vaidya <[email protected]>
  • Loading branch information
nealvaidya authored Jul 21, 2025
commit 916dba291587d3b0b0cf6f75ecca44afb1480de6
8 changes: 4 additions & 4 deletions docs/guides/dynamo_deploy/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ helm repo add nvidia https://helm.ngc.nvidia.com/nvidia --username='$oauthtoken'

```bash
# Fetch the CRDs helm chart
helm fetch https://helm.ngc.nvidia.com/nvidia/charts/dynamo-crds-v${RELEASE_VERSION}.tgz
helm fetch https://helm.ngc.nvidia.com/nvidia/ai-dynamo/charts/dynamo-crds-${RELEASE_VERSION}.tgz

# Fetch the platform helm chart
helm fetch https://helm.ngc.nvidia.com/nvidia/charts/dynamo-platform-v${RELEASE_VERSION}.tgz
helm fetch https://helm.ngc.nvidia.com/nvidia/ai-dynamo/charts/dynamo-platform-${RELEASE_VERSION}.tgz
```

### Install Dynamo Cloud

**Step 1: Install Custom Resource Definitions (CRDs)**

```bash
helm install dynamo-crds dynamo-crds-v${RELEASE_VERSION}.tgz \
helm install dynamo-crds dynamo-crds-${RELEASE_VERSION}.tgz \
--namespace default \
--wait \
--atomic
Expand All @@ -47,7 +47,7 @@ helm install dynamo-crds dynamo-crds-v${RELEASE_VERSION}.tgz \
```bash
kubectl create namespace ${NAMESPACE}

helm install dynamo-platform dynamo-platform-v${RELEASE_VERSION}.tgz --namespace ${NAMESPACE}
helm install dynamo-platform dynamo-platform-${RELEASE_VERSION}.tgz --namespace ${NAMESPACE}
```

## 2. Installing from Source
Expand Down
Loading