From d580c75b886725ea6bfe12ae63b59e76334e6fa7 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Sun, 19 Jul 2026 16:03:19 +0200 Subject: [PATCH] Add new vms to busch configuration --- terraform/busch/main.tf | 39 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/terraform/busch/main.tf b/terraform/busch/main.tf index 8020329..d1638b7 100644 --- a/terraform/busch/main.tf +++ b/terraform/busch/main.tf @@ -37,11 +37,46 @@ module "nixos-docker" { name = "nixos-docker" target_node = "busch" vmid = 101 - memory = 4096 + memory = 8192 + balloon = 2048 cpu_cores = 2 disk_storage = "truenas-lvm" disk_size = "64G" iso_path = "local:iso/latest-nixos-minimal-x86_64-linux.iso" startup_order = 2 - startup_delay = 240 + startup_delay = 300 +} + +module "docker-gpu" { + source = "./modules/proxmox-vm" + + name = "docker-gpu" + target_node = "busch" + vmid = 102 + memory = 8192 + balloon = 3072 + cpu_cores = 2 + disk_storage = "truenas-lvm" + disk_size = "64G" + iso_path = "local:iso/latest-nixos-minimal-x86_64-linux.iso" + startup_order = 2 + startup_delay = 300 + + # mapped_pcie_devices = ["gpu"] +} + +module "nixos-native" { + source = "./modules/proxmox-vm" + + name = "nixos-native" + target_node = "busch" + vmid = 103 + memory = 8192 + balloon = 3072 + cpu_cores = 2 + disk_storage = "truenas-lvm" + disk_size = "32G" + iso_path = "local:iso/latest-nixos-minimal-x86_64-linux.iso" + startup_order = 2 + startup_delay = 300 }