[GSoC 2025] Add framework for adding new drivers at runtime, for instance for cloud #2007
Replies: 5 comments 21 replies
-
Having pluggable drivers might be useful, but they should be maintained in separate repos (like Random memory: I think |
Beta Was this translation helpful? Give feedback.
-
A simplified approach, for drivers that are internal to the program but have a lot of dependencies and bloat the binary, is to use the It would not be a solution for random cloud vendor drivers, that would be shipped independent of the Those would need some kind of RPC solution, perhaps wrapped in a framework like https://github.com/hashicorp/go-plugin |
Beta Was this translation helpful? Give feedback.
-
Yes, during the initial driver interface as well the idea was to provide support via external plugin mechanism on future. We should be easily able to expose a external plugin via https://pkg.go.dev/plugin with current code. Will just need driverutil to load the external drivers. |
Beta Was this translation helpful? Give feedback.
-
Hello everyone, I came across this discussion through the GSoC project description (https://github.com/cncf/mentoring/blob/main/programs/summerofcode/2025.md#vm-plugin-subsystem) and found the idea very interesting. I would love to join the discussion and contribute to this effort. To get started, I plan to create a small demo that separates the QEMU driver into an independent binary that communicates with the main Lima binary via RPC (probably gRPC). I appreciate any guidance or suggestions from the maintainers and the community. Looking forward to contributing! |
Beta Was this translation helpful? Give feedback.
-
Cross-posting an announcement here for visibility:
|
Beta Was this translation helpful? Give feedback.
-
The
docker-machine
program had a plugin system, so that you could provide new drivers besides the built-in ones.This would be a good option to provide drivers for various proprietary hypervisors and cloud vendors, for instance.
They typically come with a big SDK, that might require certain hardware and large downloads when building.
So it would be nice if those were kept out of the Lima code base, but is still a nice addition to enable them...
docker-machine
drivers:https://github.com/machine-drivers/docker.github.io/blob/173d3c65f8e7df2a8c0323594419c18086fc3a30/machine/AVAILABLE_DRIVER_PLUGINS.md
https://github.com/machine-drivers/docker.github.io/blob/173d3c65f8e7df2a8c0323594419c18086fc3a30/machine/DRIVER_SPEC.md
Example of Lima drivers:
VirtualBox driver, for legacy compatibility and portability #1287 (PR Support for VBox driver #1277)
Libvirt driver, for hypervisors on remote machines #2031 (PR Support for Virt driver #2054)
vfkit driver (TBD)
cloud drivers (TBD)
EDIT: Some general updates, after discussion below and feedback:
vfkit
as a "new" driver and which cloud was not specified.Note that the actual driver implementation is not part of the summer project, which is about the RPC plugin framework.
Note that this is more of a general rule for drivers (only SDK), but fixing other lima code is not in the project GSoC itself.
pkg/start
(and others) from VM driver internals #1746Other details can be discussed on Slack or in other GitHub issues.
* Here is another example, from a related project (containerd):
https://github.com/containerd/fuse-overlayfs-snapshotter/#option-1-embed-fuse-overlayfs-plugin-into-the-containerd-binary
https://github.com/containerd/fuse-overlayfs-snapshotter/#option-2-execute-fuse-overlayfs-plugin-as-a-separate-binary
This is the same setup, as in docker-machine (mentioned above)
Beta Was this translation helpful? Give feedback.
All reactions