From ee976b5ee90a6275f20f5415c247b98658245b38 Mon Sep 17 00:00:00 2001 From: dittops Date: Thu, 30 Oct 2025 19:17:30 +0000 Subject: [PATCH] fix(helm): temporarily disable nvidia runtimeClassName MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Temporarily comment out the nvidia runtimeClassName in single-node deployment to resolve runtime compatibility issues. This is a temporary patch that should be reverted once the underlying issue is resolved. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../charts/bud_runtime_container/templates/single-node.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/budcluster/budcluster/charts/bud_runtime_container/templates/single-node.yaml b/services/budcluster/budcluster/charts/bud_runtime_container/templates/single-node.yaml index f19b33b7c..8022947bd 100644 --- a/services/budcluster/budcluster/charts/bud_runtime_container/templates/single-node.yaml +++ b/services/budcluster/budcluster/charts/bud_runtime_container/templates/single-node.yaml @@ -40,9 +40,9 @@ spec: topologyKey: kubernetes.io/hostname imagePullSecrets: - name: {{ $.Values.imagePullSecrets.name }} - {{- if eq .node.type "cuda" }} - runtimeClassName: nvidia - {{- end }} + # {{- if eq .node.type "cuda" }} + # runtimeClassName: nvidia + # {{- end }} containers: {{- if eq .node.type "cpu" }} {{- include "bud-runtime-container.cpu-container" (dict "Values" $.Values "device" .node) | nindent 6 }}