mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

Using the gvproxy application on the host, we can now port forward from the machine vm on the host. It requires that 'gvproxy' be installed in an executable location. gvproxy can be found in the containers/gvisor-tap-vsock github repo. [NO TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
19 lines
298 B
Go
19 lines
298 B
Go
package qemu
|
|
|
|
var (
|
|
QemuCommand = "qemu-system-x86_64"
|
|
)
|
|
|
|
func (v *MachineVM) addArchOptions() []string {
|
|
opts := []string{"-machine", "q35,accel=hvf:tcg"}
|
|
return opts
|
|
}
|
|
|
|
func (v *MachineVM) prepare() error {
|
|
return nil
|
|
}
|
|
|
|
func (v *MachineVM) archRemovalFiles() []string {
|
|
return []string{}
|
|
}
|