proxmox_bootstrap_tool

Proxmox VE 9 Node Bootstrap Framework

A modular, TUI-driven automation framework for standardizing the deployment and optimization of Proxmox VE 9 (Trixie) nodes — engineered to align with SRE workflows and replace deprecated monolithic scripts with a scalable, maintainable solution.

Proxmox VE 9 Bootstrap Framework


🚀 Quick Deploy

Run the following command directly in your Proxmox shell to launch the TUI installer. Recommended for fresh Proxmox 9.x installations.

bash -c "$(wget -qLO - https://raw.githubusercontent.com/alwazw/proxmox_bootstrap_tool/main/setup.sh)"

🛠 Engineering Principles

1. Hybrid Bootloader Abstraction (UEFI vs. BIOS)

The framework includes intelligent boot environment detection to ensure architectural compatibility across modern and legacy hardware:

2. DEB822 Repository Standardization

Proxmox 9 adopts the DEB822 multi-line specification for package management. This framework automates migration from legacy .list files to modern .sources stanzas:

Objective Implementation
System Idempotency Prevents redundant entries and configuration drift
Optimized Mirrors Precise selection of No-Subscription and Ceph-Squid repositories
Cryptographic Security GPG keyring management under /etc/apt/keyrings/ per current best practices

3. Modular Architecture

The framework is structured into discrete, decoupled logic components for extensibility:

proxmox_bootstrap_tool/
├── lib/            # Shared hardware abstraction layers & UI helper functions
├── modules/        # Decoupled task logic (IOMMU passthrough, microcode updates, user provisioning)
└── setup.sh        # Primary orchestrator — manages whiptail interface lifecycle & process flow

📦 Manual Installation

For environments requiring local inspection or manual control:

git clone https://github.com/alwazw/proxmox_bootstrap_tool
cd proxmox_bootstrap_tool
chmod +x setup.sh
./setup.sh

📅 Roadmap

Active development is underway to evolve this tool into a comprehensive Infrastructure-as-Code (IaC) enabler.


🤝 Contributing

Contributions that enhance SRE operational efficiency or expand hardware compatibility are welcome. Please adhere to the abstraction patterns established in the root directory when submitting pull requests.