Skip to main content

Husker

An open-source microVM manager built on Firecracker (Linux) and Apple Virtualization.framework (macOS).

  • Boot lightweight VMs in seconds (about 1s from a warm pool)
  • Execute commands, transfer files, open interactive shells
  • Stream serial console logs
  • Port forwarding (nftables NAT on Linux, a userspace TCP proxy on macOS)
  • REST API + CLI
  • Durable hard expirations for externally orchestrated ephemeral VMs
  • Cloud-init style userdata scripts

Status

Pre-1.0. The core feature set works and has test coverage, but:

  • The HTTP API, CLI flags, config schema, and on-disk state layout may change without a deprecation period.
  • The Linux/Firecracker backend is more mature than the macOS/Apple VZ backend.
  • It has not been run at scale or under production workloads.
  • Security features (token auth, rate limiting, encrypted secrets) exist but have had limited review. Don't expose the daemon to an untrusted network.

Useful for experimentation, local development, and CI. Not recommended for production.

Where Husker is useful

Husker works best as an execution plane beside your long-lived infrastructure:

  • disposable sandboxes for risky agent or dependency-heavy commands;
  • memory-isolated build offload with explicit artifact return;
  • single-use CI runners replaced from a clean image after every job;
  • scheduled scripts that need secrets and network access but no permanent host;
  • trusted integration VMs that can reach private registries and test services;
  • warm pools for repeated short tasks where cold-start latency dominates.

Keep databases, ingress, monitoring, and other durable services on the platform already responsible for their state. Separate untrusted internet-only jobs from trusted jobs that need private-network access instead of weakening one shared boundary.

The two-host homelab case study documents these patterns with observed build, runner, scheduler, boot, storage, and network isolation evidence from a real deployment.

Quick Start

Install

macOS (Homebrew):

brew install rvben/tap/husker

Linux & macOS (installer script):

curl -sSfL https://raw.githubusercontent.com/rvben/husker/main/install.sh | sh

Cross-platform (PyPI):

pip install husker

Pinning a version: curl -sSfL https://raw.githubusercontent.com/rvben/husker/main/install.sh | HUSKER_VERSION=v0.1.2 sh or pip install husker==0.1.2.

First boot

# Fetch the default kernel + rootfs for this host
husker images pull

# Start the daemon
husker daemon &

# Confirm it came up (checks the daemon, images, and backend)
husker doctor

# Boot a VM
husker run --name hello --cpus 2 --memory 512

# Interact
husker exec hello -- uname -a
husker shell hello
husker cp local.txt hello:/tmp/local.txt
husker logs hello -f

# Clean up
husker destroy hello

In text mode, husker exec streams stdout and stderr while the command runs. --output json intentionally returns one complete result document after exit, which keeps automation atomic and machine-readable. VMs using an older guest agent remain compatible but buffer output until their image is refreshed.

On Linux, husker run needs firecracker on PATH. If it's missing, husker prompts to download a pinned release into the data directory. For non-interactive use (CI, scripts), set HUSKER_AUTO_INSTALL_FIRECRACKER=1 to skip the prompt.

husker images pull fetches the latest image set from the images-* GitHub Releases and verifies each asset against the published SHA256SUMS. If no image release is published yet for this arch, the command will fail - use the BYO path below in the meantime.

BYO kernel / rootfs

If you want to use your own images, pass --kernel and the rootfs path:

husker run /path/to/rootfs.ext4 --kernel /path/to/vmlinux

Docker inside a VM

The default Husker kernel includes the namespaces, cgroup BPF, OverlayFS, bridge/veth, nftables, iptables compatibility, and seccomp support required by Docker, containerd, and runc. Allocate enough disk and memory for the daemon and its image store; the 128 MiB VM default is intended for lightweight jobs, not a container daemon.

husker run alpine:latest --name docker-host --cpus 2 --memory 1024 --disk-size 4G
husker exec docker-host -- apk add --no-cache docker
husker shell docker-host

# Inside the VM:
dockerd >/var/log/dockerd.log 2>&1 &
docker run --rm alpine:latest echo container-ok

Running an OCI image directly with husker job <image> remains lighter when a nested container daemon is unnecessary. See Docker and container runtimes for usage, kernel compatibility, and troubleshooting details.

Hot Pools

A pool is a pre-warmed, suspended template VM that husker forks fresh, isolated VMs from in about a second, instead of a 6-8s cold boot. Each fork inherits the template's already-booted state (kernel up, guest agent running, whatever you installed), so checkouts are fast and start from a known-good baseline. Hot pools build on Firecracker's snapshot/restore (Linux).

# Create a pool: boots a template VM once, warms it, then suspends it.
husker pool create web --vcpus 2 --memory 512

# Fork a fresh, isolated VM out of the pool (~1s).
husker pool checkout web --name task-42
husker exec task-42 -- ./run-tests.sh
husker destroy task-42

# Inspect and tear down.
husker pool list
husker pool get web
husker pool delete web

A single pool can be checked out many times concurrently: each fork gets its own IP, vsock CID, and copy-on-write rootfs, fully isolated from its siblings and from the template (the template stays suspended and is never mutated).

run and job can draw straight from a pool with --pool, the fast path for sandboxing untrusted or agentic work. The image and boot flags come from the pool's template, so pass only --name (plus job's --sync-cwd/--out) and your command:

# One-shot: fork from the pool, run the command, then destroy the VM.
husker job --pool web -- make test

# Long-lived: fork from the pool instead of cold-booting.
husker run --pool web --name preview

Configuration

Copy config.example.toml to one of the discovery paths:

  1. ~/.config/husker/config.toml (user)
  2. /etc/husker/config.toml (system)

Or pass --config /path/to/config.toml explicitly. See config.example.toml for all available fields.

Platform Support

Platform Backend Networking Status
Linux x86_64 Firecracker TAP + nftables NAT, port forwarding Usable
macOS ARM64 Apple Virtualization.framework Shared NAT (VZ-managed), port forwarding (userspace proxy) Experimental
Linux x86_64 QEMU/KVM TAP + nftables NAT, port forwarding Experimental

Intel macOS and Windows are not supported (Windows: use WSL2). Linux also supports aarch64 (agent-less build - see below).

Feature support by backend

Feature Firecracker (Linux) QEMU (Linux) Apple VZ (macOS)
Direct-kernel boot
Cloud images (--cloud-image) — ¹ ✓ (UEFI/OVMF) ✓ (EFI)
exec / shell / file copy
One-shot jobs (husker job)
Self-healing services ✓ ²
Persistent volumes (--volume) ✓ ²
Host bind-mounts (--mount) ✓ (virtiofs)
Memory balloon (--balloon)
Bridged LAN (--net bridged) ✓ ³
Per-VM egress allowlist (API network: filtered)
Snapshots
Fork / pool checkout
Idle suspend / resume

Notes:

  1. Cloud-image boot needs UEFI; Firecracker does direct-kernel boot only, so use --vmm qemu on Linux for cloud images.
  2. On macOS, --volume and services are not yet supported together with --cloud-image (both work with the default rootfs).
  3. Bridged networking requires a cloud-image VM (so --vmm qemu) plus the lan_bridge config option, and is Linux-only.

Only the two primary targets (Linux x86_64 and macOS ARM64) ship with the embedded guest agent. The Linux ARM64 and Intel-macOS builds are agent-less: husker run boots, but exec/shell/cp and cloud-image VMs need the agent, so they will report the agent as unreachable. husker doctor flags a missing embedded agent. Use a primary-target build for full functionality.

QEMU/KVM backend (Linux)

Besides Firecracker microVMs, husker can run full QEMU/KVM VMs on Linux. Select it with vmm = "qemu" in the config file or HUSKER_VMM=qemu. Requires /dev/kvm, /dev/vhost-vsock (load the vhost_vsock kernel module), and qemu-system-x86_64 on PATH (override with HUSKER_QEMU_BIN).

Current scope is direct-kernel boot (same kernel + rootfs model as the Firecracker backend), with the guest agent reachable over vsock. Cloud-image boot via UEFI/OVMF is also supported - see the Cloud Images section below.

The QEMU backend also enables host bind-mounts via virtiofs: share a host directory into the guest in real time with --mount <host>:<guest>[:ro]. See docs/host-mounts.md.

Guest kernel requirement: the QEMU backend uses the q35 machine, which puts the root disk, NIC, and vsock device on the PCI bus, so the guest kernel must have CONFIG_VIRTIO_PCI (and an initramfs if virtio_blk is a module). The default husker images satisfy this. Firecracker's own kernels are built for virtio-MMIO only and will panic under QEMU with Cannot open root device "vda". The husker default images and most distro kernels work as-is.

Cloud Images

husker can boot stock cloud images (Ubuntu, Debian, etc.) on both platforms:

  • Linux: QEMU/OVMF (UEFI boot). Requires ovmf_code and ovmf_vars in config.
  • macOS (Apple Silicon): Apple Virtualization.framework with built-in EFI.

macOS prerequisites

brew install qemu   # qemu-img is used for qcow2-to-raw conversion

Example (macOS)

# Download a cloud image (ARM64 for Apple Silicon)
curl -LO https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-arm64.img

husker run --name ubuntu \
  --cloud-image ubuntu-24.04-server-cloudimg-arm64.img \
  --ssh-key ~/.ssh/id_ed25519.pub

Networking uses VZ shared NAT; the guest gets a DHCP address in the 192.168.64.x range. The guest IP appears in husker info ubuntu once the agent reports it (typically within 20-30 seconds of first boot). Connect with husker shell ubuntu or via SSH once the IP is known.

Not yet supported on macOS with cloud images: --volume, --mount, --balloon, and services (husker service). Bridged networking (--net bridged) is Linux-only.

Alternatives

husker is one of several ways to run microVMs. Rough positioning:

Tool Backend Focus Notes
husker Firecracker (Linux) + Apple VZ (macOS) Single-host VM manager with a REST API and CLI SQLite-backed state, port forwarding, guest agent over vsock.
Ignite Firecracker Docker-image-style workflow on Firecracker Archived by Weaveworks; Linux only.
firecracker-containerd Firecracker containerd runtime backed by microVMs Kubernetes-friendly; Linux only.
krunvm libkrun OCI-image microVMs on macOS No daemon; ephemeral per-command VMs.
Lima QEMU (+ VZ on macOS) Full Linux VMs as a dev environment Heavier than Firecracker; broader guest support.

Pick husker if you want Firecracker on Linux with a matching Apple VZ path on macOS, driven by a single CLI + daemon.

Architecture

CLI (husker) ──> REST API (husker-api) ──> Core (husker-core)
                                           ├── VMM (husker-vmm)      Firecracker / Apple VZ
                                           ├── State (husker-state)  SQLite persistence
                                           ├── Net (husker-net)      TAP devices, IP allocation
                                           └── Storage (husker-storage) Rootfs cloning
                                       Guest Agent (husker-agent) ←── Proto (husker-agent-proto)

Host-guest communication uses vsock (port 52). Messages are length-prefixed JSON with base64-encoded binary payloads.

Once the daemon is running, the REST API is browsable at http://127.0.0.1:7777/docs (Swagger UI), with the raw OpenAPI schema at /api-docs/openapi.json.

External orchestrators can attach a hard lifetime when creating a VM by adding expires_after_secs and an optional informational owner to POST /v1/vms. The deadline is stored atomically with the VM record, is not extended by guest activity, appears as expires_at/owner in VM responses, and is reaped by the daemon even if the orchestrator disappears. See Werkt integration for the intended execution-plane boundary.

Linux API clients can request a default-deny egress boundary with network: "filtered" and explicit hostname/protocol/port entries. Husker resolves and pins those entries before boot, then restores the concrete policy after daemon restarts. See Per-VM egress policies.

Security

The daemon defaults to loopback-only. Don't bind it on a public interface without a bearer token and a terminating reverse proxy.

Troubleshooting

husker run can't find firecracker (Linux) On a TTY, husker prompts to download a pinned release. For scripted/CI use, set HUSKER_AUTO_INSTALL_FIRECRACKER=1 to skip the prompt, or install Firecracker yourself from the releases page.

husker run reports kvm_init: permission denied (Linux) Add your user to the kvm group: sudo usermod -aG kvm $USER and re-login.

husker run fails on macOS with a virtualization entitlement error The binary needs the com.apple.security.virtualization entitlement. pip, brew, and the installer script all ship a codesigned binary. If you built from source, run make install — it ad-hoc signs via husker.entitlements.

macOS: VM boots but exits immediately Apple VZ needs an initramfs to mount the rootfs. If you're using custom images, make sure --initrd points at a matching initramfs (see guest/build-initramfs.sh).

husker daemon binds but the CLI can't connect The CLI defaults to http://127.0.0.1:7777. If the daemon listens elsewhere, pass --api-url http://host:port (and --api-token if auth is enabled).

Rootfs edits don't take effect on macOS Use make update-rootfs to inject changes via debugfs (works in LXC and macOS). Loop-mounting doesn't work on macOS.

Development

Requires Rust 1.90+ and cargo-nextest.

make build          # Debug build
make build-release  # Release build (LTO, stripped)
make build-agent    # Static musl agent for guest VMs
make test           # Full test suite
make test-unit      # Unit tests only
make lint           # fmt-check + clippy
make check          # Type check
make install        # Install (auto-detects macOS, signs binary)

Running a Development VM

make run-daemon                     # Start daemon
make build-agent-aarch64            # Build ARM64 agent (macOS guests)
make update-rootfs                  # Inject agent into rootfs image

Systemd

A systemd unit file is provided at contrib/husker.service.

Contributing

Issues and pull requests welcome. See CONTRIBUTING.md for the dev workflow and commit conventions.

License

See LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

husker-0.4.47.tar.gz (665.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

husker-0.4.47-py3-none-manylinux_2_28_x86_64.whl (11.0 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ x86-64

husker-0.4.47-py3-none-manylinux_2_28_aarch64.whl (9.9 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

husker-0.4.47-py3-none-macosx_11_0_arm64.whl (9.6 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

husker-0.4.47-py3-none-macosx_10_12_x86_64.whl (9.6 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file husker-0.4.47.tar.gz.

File metadata

  • Download URL: husker-0.4.47.tar.gz
  • Upload date:
  • Size: 665.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for husker-0.4.47.tar.gz
Algorithm Hash digest
SHA256 be77e3434fd6a0624d160709db52c49086b89bb31eb319fd53eca0755e9163a6
MD5 069ce2eda07c0edba09851d013ec65e4
BLAKE2b-256 fa086acf9ae18ed9582226d59e3bd70f54dd7bac2385848475e4865d3a73b4e7

See more details on using hashes here.

File details

Details for the file husker-0.4.47-py3-none-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for husker-0.4.47-py3-none-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e3c54704ff8c617a30b2744ce02a0a41643ca0036dc33c32643ccac75b4e2cf
MD5 915f31b56ef2029626341358beb4dea3
BLAKE2b-256 10f911e1599b7061e057c7d6d053b713795313518605ae240ef36cd409f7ed05

See more details on using hashes here.

File details

Details for the file husker-0.4.47-py3-none-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for husker-0.4.47-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7481becc9905f391709c6c51770e2c9b24c1d2a2b8ddda34cc7e804d03bbc7c9
MD5 2b0752fe8c9d56ec9475abd10df4c39d
BLAKE2b-256 77d4a6bc1d258bcc344c096a9e80208fea0d2bbf0bbbb99b5856eb8aa0da74df

See more details on using hashes here.

File details

Details for the file husker-0.4.47-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for husker-0.4.47-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d84e1fbee214cf1bd1f1ca0b3e80a4ac53f4a6d415d49f953f5813047c378e2
MD5 b70a1f764c524d38332755b3bbdecec1
BLAKE2b-256 d0bc1ba997c2dd229420b092c5f39d18100c39d788c2bedc53f15fd9cb560430

See more details on using hashes here.

File details

Details for the file husker-0.4.47-py3-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for husker-0.4.47-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edafa44fd0708947a32b7f6a7c2d5eccb46e712a6c54e1c0e785244dab5b0939
MD5 b92cda781461595617975b6f30c3b866
BLAKE2b-256 338936105a56a8a41768f9e5c9c669faa2ef30a51f922508b8a8e53b97fad12a

See more details on using hashes here.

Release history Release notifications | RSS feed

0.4.48

5 files

This release

0.4.47 This release

5 files

0.4.46

5 files

0.4.45

5 files

0.4.44

5 files

0.4.43

5 files

0.4.42

5 files

0.4.41

5 files

0.4.40

5 files

0.4.39

5 files

0.4.38

5 files

0.4.37

5 files

0.4.36

5 files

0.4.35

5 files

0.4.34

5 files

0.4.33

5 files

0.4.32

5 files

0.4.31

5 files

0.4.30

5 files

0.4.29

5 files

0.4.28

5 files

0.4.27

5 files

0.4.26

5 files

0.4.25

5 files

0.4.24

5 files

0.4.23

5 files

0.4.22

5 files

0.4.21

5 files

0.4.20

5 files

0.4.19

5 files

0.4.18

5 files

0.4.17

5 files

0.4.16

5 files

0.4.15

5 files

0.4.14

5 files

0.4.13

5 files

0.4.12

5 files

0.4.11

5 files

0.4.10

5 files

0.4.9

5 files

0.4.8

5 files

0.4.7

5 files

0.4.6

5 files

0.4.5

5 files

0.4.4

5 files

0.4.3

5 files

0.4.2

5 files

0.4.1

5 files

0.4.0

5 files

0.3.2

5 files

0.3.1

5 files

0.3.0

5 files

0.2.1

5 files

0.2.0

5 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page