T052 verifies all 8 PlasmaCloud services on the 3-node QEMU cluster: - LightningSTOR: S3 API (SigV4 auth) - FlashDNS: gRPC + DNS resolver - NightLight: Prometheus-compatible metrics - FiberLB: Load balancer gRPC API - PrismNET: Virtual networking - CreditService: Quota REST API - K8sHost: Kubernetes API server - PlasmaVMC: VM controller All services verified running and responding. Also adds VDE launch and recovery scripts for VM cluster management. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
1.6 KiB
Bash
Executable file
52 lines
1.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# PlasmaCloud VM Cluster - Node 03 (Recovery Boot)
|
|
# Boots from disk using new kernel/initrd from nix store
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
DISK="${SCRIPT_DIR}/node03.qcow2"
|
|
MAC_MCAST="52:54:00:12:34:03"
|
|
MAC_SLIRP="52:54:00:aa:bb:03"
|
|
MCAST_ADDR="230.0.0.1:1234"
|
|
SSH_PORT=2203
|
|
VNC_DISPLAY=":3"
|
|
SERIAL_LOG="${SCRIPT_DIR}/node03-serial.log"
|
|
|
|
# New kernel and initrd from built configuration
|
|
KERNEL="/nix/store/npjqdfy6j5nb9srbzj0cc2bw0a0gvqag-linux-6.12.61/bzImage"
|
|
INITRD="/nix/store/gxb3x5ypr350dviz7g1axzxqcaha5apw-initrd-linux-6.12.61/initrd"
|
|
KERNEL_PARAMS="net.ifnames=0 biosdevname=0 console=ttyS0,115200n8 loglevel=4 root=fstab loglevel=4 lsm=landlock,yama,bpf"
|
|
|
|
# Verify disk exists
|
|
if [ ! -f "$DISK" ]; then
|
|
echo "ERROR: Disk not found at $DISK"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Launching node03 in recovery mode..."
|
|
echo " Disk: ${DISK}"
|
|
echo " Kernel: ${KERNEL}"
|
|
echo " Initrd: ${INITRD}"
|
|
echo " eth0 (multicast): ${MAC_MCAST} @ ${MCAST_ADDR}"
|
|
echo " eth1 (SLIRP): ${MAC_SLIRP}, SSH on host:${SSH_PORT}"
|
|
echo " VNC: ${VNC_DISPLAY} (port 5903)"
|
|
echo " Serial log: ${SERIAL_LOG}"
|
|
|
|
exec qemu-system-x86_64 \
|
|
-name node03 \
|
|
-machine type=q35,accel=kvm \
|
|
-cpu host \
|
|
-smp 8 \
|
|
-m 16G \
|
|
-drive file="${DISK}",if=virtio,format=qcow2 \
|
|
-kernel "${KERNEL}" \
|
|
-initrd "${INITRD}" \
|
|
-append "${KERNEL_PARAMS}" \
|
|
-netdev socket,mcast="${MCAST_ADDR}",id=mcast0 \
|
|
-device virtio-net-pci,netdev=mcast0,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 "file:${SERIAL_LOG}" \
|
|
-daemonize
|