-
Notifications
You must be signed in to change notification settings - Fork 646
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
[Windows] Many templates of Lima are not Windows compatible, when built on Windows #3316
Comments
QEMU on Windows is still work in progress, so, this is probably for backlog, but some discussions to outline the desired way to implement this might be helpful. |
We knew this, but it was "good enough" when assuming something like MSYS that would translate paths... |
@afbjorklund Thank you! I will read the discussion there. I have some concerns about translation paths in some edge cases, but I need some time with my Windows test box to experiment with it to confirm. Also, to note here. That cygpath translation could be not consistent across machines, this implementation might not follow the least surprise principle. |
I think we should aim for templates that work on any platform. Otherwise using a template via URL doesn't work; you would have to provide different templates for different platforms, which becomes a maintenance nightmare: limactl create --name my-vm https://example.com/template.yaml I've implemented my suggestion from #2339 (comment) in #3318. Please let me know if this would work for you on Windows! I do have some concerns that this will move the host location on macOS from # The /tmp/lima mount point would point to
# "/tmp/lima" on a Linux host,
# "$TMPDIR/lima" on a macOS host, and
# "%TEMP%\\lima" on a Windows host.
mounts:
- location: "{{.Temp}}/lima"
mountPoint: /tmp/lima Ok, I just looked it up, and the documentation for
|
Also: don't we need a similar solution for mounting The concept of having I guess I really should review #3304; it may answer some of these questions already. |
One thing that bothers me is that this breaks the symmetry of mounting a host temp file into a container, so this would not work: docker run --volume $TMPDIR/lima:/mnt/lima ... It would have to be written like this, even though the data is in docker run --volume /tmp/lima:/mnt/lima ... This break the magic veil that lets us pretend that the container runs on the host and not in a VM. So this still needs further thoughts. |
Just brainstorming here: We could provide the host OS as a template variable and then write: mounts:
- location: "{{if eq .OS "windows"}}{{.Temp}}{{else}}/tmp/lima{{end}}"
mountPoint: /tmp/lima This would only break the veil on Windows, where it is already broken; it requires e.g. a docker proxy to convert the host names to guest names. |
This sounds like a reasonable idea at least to explore. I had some unpleasant experience with ansible yaml files, but there it was pushed to some extremes. If it is possible to keep this reasonable and UX is good enough could be an option.
I wanted to mention this. Because there is already ~ in the template and it is resolved to Windows path. So it will need special handling for ~ to first convert to Unix like and then to convert back via same procedure like for Unix paths. Not that complex, but feels like sub-optimal.
I didn't think about scenario with remote templates. I was thinking in the domain of delivered with the installation files, where it would be fine to have it platform specific. For this scenario cross platform support is definitely preferred. Throwing in a random idea - adding to template annotation "supported-platforms" and show error if the template is not supported by the platform. It is partially already that way for machine providers, which are not cross-platform - Lima should print an error that this is not supported, this would just extend definition to template in general instead of VMType only.
Please do. I will appreciate it a lot!
Yes, but the translation should only be done by Lima, when Lima code decides which tooling is in use and how to convert it. Lima converts a number of windows paths already in the direction Windows -> Unix (user requested to underlying commands), but the reverse conversion is not really a thing.
Didn't get what "default" is referencing to here, but I totally agree that there will be platform specific handling for QEMU mounts.
Symmetry on Windows is a far reach unfortunately. Especially if Lima is used from Powershell or CMD shells. For me it is hard to tell if users will choose the visible symmetry with a single supported shell or variety of supported shells and some shenanigans with mount commands for FS mounts into containers.
I believe this was never solved with Podman. How is it implemented in Docker Desktop? I will need to setup fresh VM to test it out, may be someone has tried it.
I will try it and post feedback in the PR. |
Description
Right now templates for QEMU, which have mounts defined are not Windows compatible, because they have Unix absolute path entry "/tmp/lima". They have to be manually changed before they can be used.
Proposed solution:
Provide additional build step which will transform incompatible values into acceptable: something like "/tmp/lima" -> "C:\Temp\lima", which is definitely not imperfect, but somehow better.
So, then one can call command
make binaries windows-templates
and get templates transformed in_output
directory.The text was updated successfully, but these errors were encountered: