-
Notifications
You must be signed in to change notification settings - Fork 49
Qemu-guest-agent is missing in QEMU aarch64 image #1593
Copy link
Copy link
Closed
Labels
Description
Description
Per https://www.flatcar.org/docs/latest/setup/customization/acpi/, images should include qemu-guest-agent which is enabled when org.qemu.guest_agent.0 virtio port is present. However, the flatcar_production_qemu_uefi_secure_image.img image for aarch64 does not contain it.
Impact
Guest automation depending on the guest agent does not work.
Environment and steps to reproduce
- Run Flatcar from
flatcar_production_qemu_uefi_secure_image.imgforaarch64archictecture. The version being tested is 4081.2.0. Use the following qemu args to add the virtio port:
-chardev socket,host=localhost,port=4444,server=on,wait=off,id=vp0
-device virtio-serial
-device virtserialport,chardev=vp0,name=org.qemu.guest_agent.0
- Log in to the VM with SSH.
- Ensure
ls -la /dev/virtio-ports/shows theorg.qemu.guest_agent.0port. - Ensure
which qemu-guest-agentdoes not show anything, neither doespgrep qemu.
Expected behavior
A qemu-guest-agent executable exists and is started.
Reactions are currently unavailable