update: increase VM disk sizes for kubeadm nodes
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 13s

This commit is contained in:
2026-02-28 21:25:44 +00:00
parent 327c07314c
commit 824e3c09d1
2 changed files with 4 additions and 4 deletions

View File

@@ -77,13 +77,13 @@ variable "worker_memory_mb" {
variable "control_plane_disk_size" {
type = string
default = "40G"
default = "80G"
description = "Disk size for control plane VMs"
}
variable "worker_disk_size" {
type = string
default = "60G"
default = "120G"
description = "Disk size for worker VMs"
}