Skip to content

Commit 05090a5

Browse files
authored
Merge pull request #1944 from NVIDIA/upd-readme-with-roadmap
Update README.md with quick start and roadmap
2 parents 51dd7a2 + 2af0719 commit 05090a5

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,47 @@ The GPU Operator allows administrators of Kubernetes clusters to manage GPU node
1414

1515
Note that the GPU Operator is specifically useful for scenarios where the Kubernetes cluster needs to scale quickly - for example provisioning additional GPU nodes on the cloud or on-prem and managing the lifecycle of the underlying software components. Since the GPU Operator runs everything as containers including NVIDIA drivers, the administrators can easily swap various components - simply by starting or stopping containers.
1616

17+
18+
## Quick Start
19+
20+
This section provides a quick guide for deploying the GPU Operator with the data center driver.
21+
22+
Make sure your Kubernetes cluster meets the [prerequisites](https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/latest/getting-started.html#prerequisites) and is listed on the [platform support page](https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/latest/platform-support.html#supported-operating-systems-and-kubernetes-platforms).
23+
24+
25+
**Step 1: Add the NVIDIA Helm repository**
26+
27+
```bash
28+
helm repo add nvidia https://helm.ngc.nvidia.com/nvidia \
29+
&& helm repo update
30+
```
31+
32+
**Step 2: Deploy GPU Operator**
33+
34+
```bash
35+
helm install --wait --generate-name \
36+
-n gpu-operator --create-namespace \
37+
nvidia/gpu-operator
38+
```
39+
40+
After installation, the GPU Operator and its operands should be up and running.
41+
42+
Note:
43+
To deploy the GPU Operator on OpenShift, follow the instructions in the [official documentation](https://docs.nvidia.com/datacenter/cloud-native/openshift/latest/steps-overview.html).
44+
45+
1746
## Product Documentation
1847
For information on platform support and getting started, visit the official documentation [repository](https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/overview.html).
1948

49+
50+
## Roadmap
51+
52+
- Support the latest NVIDIA Data Center GPUs, systems, and drivers.
53+
- Support RHEL 10.
54+
- Support KubeVirt with Ubuntu 24.04.
55+
- Promote the [NVIDIADriver](https://docs.nvidia.com/datacenter/cloud-native/gpu-operator/latest/gpu-driver-configuration.html) CRD to General Availability (GA).
56+
- Integrate [NVIDIA’s DRA Driver for GPUs](https://github.com/NVIDIA/k8s-dra-driver-gpu) as a managed component of the GPU Operator.
57+
2058
## Webinar
2159
[How to easily use GPUs on Kubernetes](https://info.nvidia.com/how-to-use-gpus-on-kubernetes-webinar.html)
2260

0 commit comments

Comments
 (0)