fix(terraform): switch NVIDIA extensions to LTS channel (580.xx) — Tesla V100/Volta is Legacy-tier, production channel (595.xx) silently ignores the GPU

This commit is contained in:
Story Crater Bot
2026-08-11 12:12:26 -07:00
parent 9188be39c6
commit 36dfaa4ddd
+6 -3
View File
@@ -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",
]
}
}