From ce13ac054c7c3e6577656d3dabd07d5f63338030 Mon Sep 17 00:00:00 2001 From: jenkins Date: Fri, 22 May 2026 05:08:57 -0300 Subject: [PATCH] game-stream(wolf): mount Nvidia driver volume --- services/game-stream/wolf-statefulset.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/services/game-stream/wolf-statefulset.yaml b/services/game-stream/wolf-statefulset.yaml index 4347bf87..31c43729 100644 --- a/services/game-stream/wolf-statefulset.yaml +++ b/services/game-stream/wolf-statefulset.yaml @@ -51,6 +51,8 @@ spec: value: all - name: NVIDIA_VISIBLE_DEVICES value: all + - name: NVIDIA_DRIVER_VOLUME_NAME + value: nvidia-driver-vol securityContext: privileged: true resources: @@ -75,6 +77,8 @@ spec: mountPath: /dev - name: udev mountPath: /run/udev + - name: nvidia-driver-volume + mountPath: /usr/nvidia - name: wolf-api-proxy image: ghcr.io/games-on-whales/wolf:stable imagePullPolicy: IfNotPresent @@ -170,3 +174,7 @@ spec: hostPath: path: /run/udev type: Directory + - name: nvidia-driver-volume + hostPath: + path: /var/lib/docker/volumes/nvidia-driver-vol/_data + type: Directory