Includes all pending changes needed for nixos-anywhere: - fiberlb: L7 policy, rule, certificate types - deployer: New service for cluster management - nix-nos: Generic network modules - Various service updates and fixes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
66 lines
2.1 KiB
Bash
Executable file
66 lines
2.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# PlasmaCloud VM Cluster - Node 01 (Boot from installed NixOS on disk)
|
|
# Boots from the NixOS installation created by nixos-anywhere
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
DISK="${SCRIPT_DIR}/node01.qcow2"
|
|
|
|
# Networking
|
|
MAC_MCAST="52:54:00:12:34:01" # eth0: multicast VDE
|
|
MAC_SLIRP="52:54:00:aa:bb:01" # eth1: SLIRP DHCP (10.0.2.15)
|
|
SSH_PORT=2201 # Host port -> VM port 22
|
|
|
|
# Console access
|
|
VNC_DISPLAY=":1" # VNC fallback
|
|
SERIAL_PORT=4401 # Telnet serial
|
|
|
|
# Check if disk exists
|
|
if [ ! -f "$DISK" ]; then
|
|
echo "ERROR: Disk not found at $DISK"
|
|
exit 1
|
|
fi
|
|
|
|
# Check if VDE switch is running
|
|
if ! pgrep -f "vde_switch.*vde.sock" > /dev/null; then
|
|
echo "ERROR: VDE switch not running. Start with: vde_switch -sock /tmp/vde.sock -daemon"
|
|
exit 1
|
|
fi
|
|
|
|
echo "============================================"
|
|
echo "Launching node01 from disk (installed NixOS)..."
|
|
echo "============================================"
|
|
echo " Disk: ${DISK}"
|
|
echo ""
|
|
echo "Network interfaces:"
|
|
echo " eth0 (VDE): MAC ${MAC_MCAST}"
|
|
echo " eth1 (SLIRP): MAC ${MAC_SLIRP}, SSH on host:${SSH_PORT}"
|
|
echo ""
|
|
echo "Console access:"
|
|
echo " Serial: telnet localhost ${SERIAL_PORT}"
|
|
echo " VNC: vncviewer localhost${VNC_DISPLAY} (port 5901)"
|
|
echo " SSH: ssh -p ${SSH_PORT} root@localhost"
|
|
echo ""
|
|
echo "Boot: From disk (installed NixOS)"
|
|
echo "============================================"
|
|
|
|
cd "${SCRIPT_DIR}"
|
|
|
|
qemu-system-x86_64 \
|
|
-name node01 \
|
|
-machine type=q35,accel=kvm \
|
|
-cpu host \
|
|
-smp 4 \
|
|
-m 4G \
|
|
-drive file="${DISK}",if=virtio,format=qcow2 \
|
|
-netdev vde,id=vde0,sock=/tmp/vde.sock \
|
|
-device virtio-net-pci,netdev=vde0,mac="${MAC_MCAST}" \
|
|
-netdev user,id=user0,hostfwd=tcp::${SSH_PORT}-:22 \
|
|
-device virtio-net-pci,netdev=user0,mac="${MAC_SLIRP}" \
|
|
-vnc "${VNC_DISPLAY}" \
|
|
-serial mon:telnet:127.0.0.1:${SERIAL_PORT},server,nowait \
|
|
-daemonize
|
|
|
|
echo "Node01 started successfully!"
|
|
echo "Wait 10-15 seconds for boot, then: ssh -p ${SSH_PORT} root@localhost"
|