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
8 changes: 4 additions & 4 deletions docs/get-started/deploy-with-helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ This guide covers:

## Prerequisites {#prerequisites}

- [Helm](https://helm.sh/zh/docs/) v3+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) v1.16+
- [Helm](https://helm.sh/docs/) v3+
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) v1.23+
- [CUDA](https://developer.nvidia.com/cuda-toolkit) v10.2+
- [NVIDIA Driver](https://www.nvidia.cn/drivers/unix/) v440+

Expand Down Expand Up @@ -93,7 +93,7 @@ sudo systemctl daemon-reload && sudo systemctl restart containerd
Label your GPU nodes for HAMi scheduling with `gpu=on`. Nodes without this label cannot be managed by the scheduler.

```bash
kubectl label nodes {nodeid} gpu=on
kubectl label nodes <node-name> gpu=on
```

### 3. Deploy HAMi using Helm {#deploy-hami-using-helm}
Expand Down Expand Up @@ -147,7 +147,7 @@ spec:
Run the following command:

```bash
kubectl exec -it gpu-pod nvidia-smi
kubectl exec -it gpu-pod -- nvidia-smi
```

Expected output:
Expand Down
Loading