docs: proxmox:// bootstrap metal-validated + QGA finding#111
Merged
Conversation
Metal-validated the proxmox:// bootstrap on the homelab (2026-07-07): with a static IP, install --target proxmox://homelab?...&ip=... created the VM, applied the static IP, waited for SSH, and deployed the cross-built Linux controller -- systemd openctl-controller.service came up active with :9444 (gRPC) + :9445 (UI) listening. Flip [~] -> [x]. Prereq documented: make build-controller-linux (the installer expects a pre-built bin/openctl-controller-linux-amd64). Known limitation found: DHCP mode times out on IP discovery because the QGA-install cicustom snippet silently no-ops on local-lvm (LVM storages cannot hold snippets content), so qemu-guest-agent never installs and the DHCP IP is undiscoverable. Static ip=... bypasses QGA. Added a follow-up roadmap item to harden the QGA-install path (cloud-init packages, or auto-pick a snippets storage, or fail loudly instead of a 10m timeout).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Records the homelab metal validation of the
proxmox://self-hosting bootstrap and flips its roadmap item[~]→[x].Result (2026-07-07, pve1351)
With a static IP,
install --target "proxmox://homelab?...&ip=192.168.0.235/24&gateway=192.168.0.1"created the VM → applied the static IP → waited for SSH → deployed the cross-built Linux controller. The systemdopenctl-controller.servicecame up active, :9444 (gRPC) + :9445 (UI) listening.Prereq documented:
make build-controller-linuxfirst (the installer expects the pre-builtbin/openctl-controller-linux-amd64; it does not cross-compile on the fly).Real finding → new follow-up item
DHCP mode times out on IP discovery: it relies on the qemu-guest-agent, but the QGA-install
cicustomsnippet silently no-ops onlocal-lvm(LVM storages can’t holdsnippetscontent), so QGA never installs and the DHCP IP is undiscoverable. Staticip=…bypasses it. Added a roadmap follow-up to harden the QGA-install path (install QGA via cloud-initpackages, auto-pick a snippets storage, or fail loudly instead of a 10-minute timeout).Docs-only.