Serve daemon-managed .vm names directly from bangerd on 127.0.0.1:42069 instead of shelling out to mapdns. This keeps DNS state tied to VM lifecycle and lets the daemon rebuild records from running VMs after startup or reconcile. Add a small in-process authoritative DNS server, register and remove records from the VM start/stop/delete paths, and show the listener in daemon status. Remove the mapdns config and preflight surface, stop helper-flow DNS publishing in customize.sh and interactive.sh, drop dns.sh from the runtime bundle, and update docs/tests for the new local-resolver integration model. Validated with GOCACHE=/tmp/banger-gocache go test ./..., GOCACHE=/tmp/banger-gocache make build, and bash -n customize.sh interactive.sh.
30 lines
949 B
TOML
30 lines
949 B
TOML
# Template manifest for local or published runtime bundle archives.
|
|
# Keep this checked-in file empty by default; use a local manifest copy with
|
|
# concrete `url` and `sha256` values when bootstrapping `./runtime/`.
|
|
version = "v0"
|
|
url = ""
|
|
sha256 = ""
|
|
bundle_root = "runtime"
|
|
required_paths = [
|
|
"firecracker",
|
|
"customize.sh",
|
|
"packages.sh",
|
|
"namegen",
|
|
"packages.apt",
|
|
"id_ed25519",
|
|
"rootfs-docker.ext4",
|
|
"wtf/root/boot/vmlinux-6.8.0-94-generic",
|
|
"wtf/root/boot/initrd.img-6.8.0-94-generic",
|
|
"wtf/root/lib/modules/6.8.0-94-generic",
|
|
]
|
|
|
|
[bundle_metadata]
|
|
firecracker_bin = "firecracker"
|
|
ssh_key_path = "id_ed25519"
|
|
namegen_path = "namegen"
|
|
customize_script = "customize.sh"
|
|
default_packages_file = "packages.apt"
|
|
default_rootfs = "rootfs-docker.ext4"
|
|
default_kernel = "wtf/root/boot/vmlinux-6.8.0-94-generic"
|
|
default_initrd = "wtf/root/boot/initrd.img-6.8.0-94-generic"
|
|
default_modules_dir = "wtf/root/lib/modules/6.8.0-94-generic"
|