Replies: 1 comment 1 reply
-
It would require a new option, to keep the mounts in plain mode. Currently plain mode disables them: func fixUpForPlainMode(y *LimaYAML) {
if !*y.Plain {
return
}
//y.Mounts = nil <-- add option for this
y.PortForwards = nil
y.Containerd.System = ptr.Of(false)
y.Containerd.User = ptr.Of(false)
y.Rosetta.BinFmt = ptr.Of(false)
y.Rosetta.Enabled = ptr.Of(false)
y.TimeZone = ptr.Of("")
} It would keep the "default" mounts for the driver (virtfs/virtiofs), but would not support "reverse-sshfs" i.e. using The hardest part is probably what the flag and the option should be called, rather than the implementation Maybe |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
What's the purpose of the guest agent? Is it possible to disable it but retain virtiofs mount points?
--plain
option seems to disable everything.Beta Was this translation helpful? Give feedback.
All reactions