From 36dfaa4ddd67712048ca84ae5986ce678cfa6349 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Tue, 11 Aug 2026 12:12:26 -0700 Subject: [PATCH] =?UTF-8?q?fix(terraform):=20switch=20NVIDIA=20extensions?= =?UTF-8?q?=20to=20LTS=20channel=20(580.xx)=20=E2=80=94=20Tesla=20V100/Vol?= =?UTF-8?q?ta=20is=20Legacy-tier,=20production=20channel=20(595.xx)=20sile?= =?UTF-8?q?ntly=20ignores=20the=20GPU?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- terraform/talos_schematic.tf | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/terraform/talos_schematic.tf b/terraform/talos_schematic.tf index 1061e02..502b924 100644 --- a/terraform/talos_schematic.tf +++ b/terraform/talos_schematic.tf @@ -20,7 +20,10 @@ data "talos_image_factory_urls" "longhorn_installer" { } # GPU-enabled schematic with NVIDIA drivers and toolkit (+ Longhorn deps, since -# worker nodes also run the Longhorn CSI DaemonSet) +# worker nodes also run the Longhorn CSI DaemonSet). +# LTS channel (580.xx), not production (595.xx) -- Tesla V100 (Volta) is on +# NVIDIA's Legacy driver branch; the 595.xx production driver ignores it entirely +# ("NVRM: No NVIDIA GPU found"). resource "talos_image_factory_schematic" "gpu_enabled" { schematic = jsonencode({ customization = { @@ -28,8 +31,8 @@ resource "talos_image_factory_schematic" "gpu_enabled" { officialExtensions = [ "siderolabs/iscsi-tools", "siderolabs/util-linux-tools", - "siderolabs/nonfree-kmod-nvidia-production", - "siderolabs/nvidia-container-toolkit-production", + "siderolabs/nonfree-kmod-nvidia-lts", + "siderolabs/nvidia-container-toolkit-lts", ] } }