Skip to content

Installing a development build

Dr. Jan-Philip Gehrcke edited this page Nov 20, 2025 · 2 revisions

We push build artifacts (container images, Helm charts) to GHCR.

You can Helm-install a development version by using oci://ghcr.io/nvidia/k8s-dra-driver-gpu as the chart repository locator, and by referring to a specific build via --version constraint.

The argument to --version must be an item with a -chart suffix from this package list.

Example: --version "25.12.0-dev-f8fceeae-chart".

A complete helm install example:

$ helm install \
    nvidia-dra-driver-gpu
    oci://ghcr.io/nvidia/k8s-dra-driver-gpu \
    --version "25.12.0-dev-f8fceeae-chart" \
    --namespace nvidia-dra-driver-gpu \
    --create-namespace \
    --set logVerbosity=6 \
    --set resources.gpus.enabled=false \
    --set nvidiaDriverRoot=/run/nvidia/driver

Of course, pick chart parameters suited for your use case.

Clone this wiki locally