Reorganize the brownfield repository, remove retired and generated artifacts, harden ignore rules, and record the GitOps/IaC redesign.
17 lines
1.1 KiB
Plaintext
17 lines
1.1 KiB
Plaintext
#!ipxe
|
|
# ─────────────────────────────────────────────────────────────────────────
|
|
# Proxmox VE 9.2 AUTOMATED install — pve2 → 192.168.10.7 (target: nvme0n1)
|
|
# Same --pxe-style method as pve3: lean kernel + gzip initrd, then the
|
|
# answer-embedded ISO as a second initrd (proxmox.iso). WIPES nvme0n1.
|
|
# Reinstalling pve2 also vacates the contested 192.168.10.5.
|
|
# ─────────────────────────────────────────────────────────────────────────
|
|
echo
|
|
echo Proxmox VE 9.2 AUTOMATED install: pve2 -> 192.168.10.7 (wipes nvme0n1)
|
|
kernel http://192.168.10.127:8080/proxmox/linux26 ro ramdisk_size=16777216 rw quiet splash=silent proxmox-start-auto-installer
|
|
initrd http://192.168.10.127:8080/proxmox/initrd.img
|
|
initrd http://192.168.10.127:8080/proxmox/prepared-pve2.iso proxmox.iso
|
|
boot || goto failed
|
|
:failed
|
|
echo Proxmox netboot failed. Dropping to shell.
|
|
shell
|