From cda603d92043f4d8d5b3163d3ee7f7e700edcc91 Mon Sep 17 00:00:00 2001 From: Clint Branham Date: Wed, 18 Mar 2026 14:27:43 -0500 Subject: [PATCH] fix(ci): set boot order to disk-first to prevent install loop OVMF was rebooting back into the installer CD after PVE install completed. Setting boot_order to scsi0 first means the first boot falls through to CD (empty disk), and after install OVMF boots from the EFI entry on disk. Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/infrastructure/main.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/infrastructure/main.tf b/tests/infrastructure/main.tf index 96b3715..d30d664 100644 --- a/tests/infrastructure/main.tf +++ b/tests/infrastructure/main.tf @@ -29,8 +29,9 @@ resource "proxmox_virtual_environment_vm" "nested_pve" { node_name = var.target_node vm_id = var.vm_id - machine = "q35" - bios = "ovmf" + machine = "q35" + bios = "ovmf" + boot_order = ["scsi0", "ide2"] cpu { type = "host"