-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get rid of ignite #260
Comments
Do you think it would be worth removing this workaround (https://github.com/metal-stack/metal-images/blob/20240913/cmd/install.go#L157) by switching to a Docker alternative that doesn't modify |
I'm afraid, but do not understand your point |
For example,
|
But with #255 we add the ability to change the DNS server at allocation, how will buildah help here ? |
You're right, we will write |
Ignite is dead and archived since almost a year.
I came across this blog post: https://mergeboard.com/blog/2-qemu-microvm-docker/ which describes howto convert a docker image to a qcow2 file and run it with firecracker or any other small and fast micro-vm tool. With the help of docker buildx (default nowadays) creating a tarball from a Dockerfile can be done like so:
And converting it to qcow2:
We can replace the current docker-make based build with
docker buildx bake
, see: https://docs.docker.com/build/bake/After that it should be not so difficult to run it as a VM once a kernel is provided.
The text was updated successfully, but these errors were encountered: