Skip to content

Commit fbbd6e4

Browse files
Add DRIVER_VERSION & FORCE_REINSTALL fields for avoiding driver reinstalls
Signed-off-by: Karthik Vetrivel <[email protected]>
1 parent 84ae15d commit fbbd6e4

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

deployments/gpu-operator/values.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ driver:
143143
usePrecompiled: false
144144
repository: nvcr.io/nvidia
145145
image: driver
146-
version: "580.82.07"
146+
version: &driver_version "580.82.07"
147147
imagePullPolicy: IfNotPresent
148148
imagePullSecrets: []
149149
startupProbe:
@@ -195,8 +195,16 @@ driver:
195195
# to ensure k8s-driver-manager stays compatible with gpu-operator starting from v24.3.0
196196
version: v0.8.1
197197
imagePullPolicy: IfNotPresent
198-
env: []
199-
env: []
198+
env:
199+
- name: DRIVER_VERSION
200+
value: *driver_version
201+
- name: FORCE_REINSTALL
202+
value: "false"
203+
env:
204+
- name: DRIVER_VERSION
205+
value: *driver_version
206+
- name: FORCE_REINSTALL
207+
value: "false"
200208
resources: {}
201209
# Private mirror repository configuration
202210
repoConfig:

0 commit comments

Comments
 (0)