Files
PSProxmoxVE/tests/infrastructure/outputs.tf
T
goodolclint-claude[bot] f48f0ea9ae ci: storage and answer services move to a VM inside the CI sandbox (1/2)
The nested PVE guests live on an isolated VLAN with no route to the
runner network (ADR 0032, homelab repo), and the runner-hosted Docker
services died with each ephemeral ARC pod anyway. A small cloud-image VM
in the ci pool now serves NFS, iSCSI, and the auto-install answer files
from inside the sandbox. Includes fixes from Codex and in-house review:
bpg provider >= 0.79.0, serial console for the resized cloud image,
key-based SSH (cloud images refuse password auth), CIDR validation,
storage VM in the headroom check, docker socket mounts removed.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-31 19:52:36 +00:00

15 lines
408 B
Terraform

output "pve_vm_ids" {
description = "Map of instance key to VM ID"
value = { for k, v in proxmox_virtual_environment_vm.nested_pve : k => v.vm_id }
}
output "pve_test_node_name" {
value = "pve"
description = "Default node name inside a fresh PVE install"
}
output "storage_vm_ip" {
description = "Static address of the shared NFS/iSCSI storage VM"
value = var.storage_vm_ip
}