Skip to content

feat(aer): Add support for managing vms#594

Merged
dmah42 merged 5 commits intoaurae-runtime:mainfrom
mccormickt:aer-vms
Jan 19, 2026
Merged

feat(aer): Add support for managing vms#594
dmah42 merged 5 commits intoaurae-runtime:mainfrom
mccormickt:aer-vms

Conversation

@mccormickt
Copy link
Copy Markdown
Contributor

Adds support for VMs to aer. Validated with my own auraed locally:

» aer vm allocate test-vm \
 --machine-vcpu-count 2 --machine-mem-size-mb 2048 \
--machine-kernel-img-path /var/lib/aurae/vm/kernel/vmlinux.bin \
--machine-root-drive-image-path /var/lib/aurae/vm/image/disk.raw

» aer vm start test-vm
VmServiceStartResponse {
    auraed_address: "[fe80::2%36]:8080",
}

» aer vm list
VmServiceListResponse {
    machines: [
        VirtualMachineSummary {
            id: "test-vm",
            status: "Running",
            mem_size_mb: 2048,
            vcpu_count: 2,
            kernel_img_path: "/var/lib/aurae/vm/kernel/vmlinux.bin",
            root_dir_path: "/var/lib/aurae/vm/image/disk.raw",
            auraed_address: "[fe80::2%36]:8080",
        },
    ],
}

Tweaked our macro as well to allow for repeated arguments to be able to map to repeated protobuf fields.

@dmah42 dmah42 merged commit 288d93e into aurae-runtime:main Jan 19, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants