Skip to content

Commit 19f2985

Browse files
committed
Bump to latest dra driver image on HEAD of main
Signed-off-by: Christopher Desiniotis <cdesiniotis@nvidia.com>
1 parent f7e371f commit 19f2985

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

assets/state-dra-driver/0600_configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
app: nvidia-dra-driver-kubelet-plugin
88
data:
99
entrypoint.sh: |-
10-
#!/bin/sh
10+
#!/bin/bash
1111
1212
if [ "$#" -ne 1 ]; then
1313
echo "Usage: $0 COMMAND"

assets/state-dra-driver/0700_daemonset.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ spec:
5555
securityContext:
5656
privileged: true
5757
image: "FILLED BY THE OPERATOR"
58-
command: ["/bin/sh", "-c"]
58+
# (cdesiniotis) note that while the k8s-dra-driver-gpu image is built on top of
59+
# the NVIDIA distroless base image, which does not have bash, a statically compiled
60+
# bash is added to the final image at /bin/bash.
61+
command: ["/bin/bash", "-c"]
5962
args:
6063
- /bin/entrypoint.sh "compute-domain-kubelet-plugin -v 6"
6164
env:
@@ -100,7 +103,10 @@ spec:
100103
securityContext:
101104
privileged: true
102105
image: "FILLED BY THE OPERATOR"
103-
command: ["/bin/sh", "-c"]
106+
# (cdesiniotis) note that while the k8s-dra-driver-gpu image is built on top of
107+
# the NVIDIA distroless base image, which does not have bash, a statically compiled
108+
# bash is added to the final image at /bin/bash.
109+
command: ["/bin/bash", "-c"]
104110
args:
105111
- /bin/entrypoint.sh "gpu-kubelet-plugin -v 6"
106112
env:

deployments/gpu-operator/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ devicePlugin:
265265
hostNetwork: false
266266

267267
draDriver:
268-
repository: nvcr.io/nvidia
268+
repository: ghcr.io/nvidia
269269
image: k8s-dra-driver-gpu
270-
version: v25.3.0-rc.4
270+
version: v25.8.0-dev-124734f2
271271
imagePullPolicy: IfNotPresent
272272
imagePullSecrets: []
273273

0 commit comments

Comments
 (0)