From bf57982e2f36f6c41ecb855ca90490f3cc059322 Mon Sep 17 00:00:00 2001 From: Sirius Claw Date: Mon, 20 Apr 2026 04:46:38 +0000 Subject: [PATCH] fix: make L4 nodepool 24/7 base and add missing gpu_driver_installation_config --- modules/nodepool-gpu.tf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/nodepool-gpu.tf b/modules/nodepool-gpu.tf index bc5975e..92aa8be 100644 --- a/modules/nodepool-gpu.tf +++ b/modules/nodepool-gpu.tf @@ -3,10 +3,10 @@ resource "google_container_node_pool" "gpu_pool" { location = "us-central1-a" cluster = google_container_cluster.primary.name - initial_node_count = 0 + initial_node_count = 1 autoscaling { - min_node_count = 0 + min_node_count = 1 max_node_count = 1 } @@ -16,6 +16,10 @@ resource "google_container_node_pool" "gpu_pool" { guest_accelerator { type = "nvidia-l4" count = 1 + + gpu_driver_installation_config { + gpu_driver_version = "LATEST" + } }