-
Notifications
You must be signed in to change notification settings - Fork 462
Update README.md #1890
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README.md #1890
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -46,6 +46,46 @@ To deploy the GPU Operator on OpenShift, follow the instructions in the [officia | |||||||||||
| ## Product Documentation | ||||||||||||
| For information on platform support and getting started, visit the official documentation [repository](https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/overview.html). | ||||||||||||
|
|
||||||||||||
| ## Quick Start | ||||||||||||
|
|
||||||||||||
| Make sure your k8s cluster meets the pre-requisites as listed in the platform support page: | ||||||||||||
|
|
||||||||||||
| https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/latest/platform-support.html | ||||||||||||
|
|
||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
|
|
||||||||||||
| Step1: Install Helm locally: | ||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
| ``` | ||||||||||||
|
Comment on lines
+56
to
+57
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
| curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 \ | ||||||||||||
| && chmod 700 get_helm.sh \ | ||||||||||||
| && ./get_helm.sh | ||||||||||||
| ``` | ||||||||||||
|
|
||||||||||||
|
|
||||||||||||
| Step2: Deploy GPU operator: | ||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
| ``` | ||||||||||||
|
Comment on lines
+64
to
+65
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
| helm install --wait --generate-name \ | ||||||||||||
| -n gpu-operator --create-namespace \ | ||||||||||||
| nvidia/gpu-operator \ | ||||||||||||
| --version=v25.10.0 | ||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this is a quick start guide, I'd prefer dropping the version flag here. Let's also add the helm repo commands before helm install command |
||||||||||||
| ``` | ||||||||||||
|
|
||||||||||||
| That's all. | ||||||||||||
|
|
||||||||||||
| GPU Operator and its operands should be up and running as shown below: | ||||||||||||
| ``` | ||||||||||||
|
Comment on lines
+74
to
+75
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
| gpu-operator gpu-feature-discovery-98x9m 1/1 Running 0 22h | ||||||||||||
| gpu-operator gpu-operator-1762903711-node-feature-discovery-gc-5c458899bbwpk 1/1 Running 0 22h | ||||||||||||
| gpu-operator gpu-operator-1762903711-node-feature-discovery-master-856b8tvqs 1/1 Running 0 22h | ||||||||||||
| gpu-operator gpu-operator-1762903711-node-feature-discovery-worker-m5jdr 1/1 Running 0 22h | ||||||||||||
| gpu-operator gpu-operator-5b685fc9c9-wntlj 1/1 Running 0 22h | ||||||||||||
| gpu-operator nvidia-container-toolkit-daemonset-c7c6f 1/1 Running 0 22h | ||||||||||||
| gpu-operator nvidia-cuda-validator-zt45l 0/1 Completed 0 22h | ||||||||||||
| gpu-operator nvidia-dcgm-exporter-px9hw 1/1 Running 0 22h | ||||||||||||
| gpu-operator nvidia-device-plugin-daemonset-cd4hp 1/1 Running 0 22h | ||||||||||||
| gpu-operator nvidia-driver-daemonset-xkqnp 1/1 Running 0 22h | ||||||||||||
| gpu-operator nvidia-mig-manager-jrthj 1/1 Running 0 22h | ||||||||||||
| gpu-operator nvidia-operator-validator-5kq7z 1/1 Running 0 22h | ||||||||||||
| ``` | ||||||||||||
|
|
||||||||||||
| ## Roadmap | ||||||||||||
|
|
||||||||||||
|
|
||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.