diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-12-26 13:26:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-26 13:26:07 +0100 |
commit | e06631d6c22f4d5b7a62f70ccdf623379a9d5fe7 (patch) | |
tree | 54fe3a08b58b9129f87e51cd1b8fcd938f582777 /pkg/machine/qemu/config.go | |
parent | 73a54ea54d0a1b4ccaa2a0e23c678e5b7c1d5c37 (diff) | |
parent | 803defbe509af1902a1fdc2ed7f41b49ebd241f6 (diff) | |
download | podman-e06631d6c22f4d5b7a62f70ccdf623379a9d5fe7.tar.gz podman-e06631d6c22f4d5b7a62f70ccdf623379a9d5fe7.tar.bz2 podman-e06631d6c22f4d5b7a62f70ccdf623379a9d5fe7.zip |
Merge pull request #12503 from n1hility/wsl-machine
Introduce Windows WSL implementation of podman machine
Diffstat (limited to 'pkg/machine/qemu/config.go')
-rw-r--r-- | pkg/machine/qemu/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/machine/qemu/config.go b/pkg/machine/qemu/config.go index c04773450..8404079a2 100644 --- a/pkg/machine/qemu/config.go +++ b/pkg/machine/qemu/config.go @@ -4,6 +4,8 @@ package qemu import "time" +type Provider struct{} + type MachineVM struct { // CPUs to be assigned to the VM CPUs uint64 @@ -44,6 +46,4 @@ var ( // defaultQMPTimeout is the timeout duration for the // qmp monitor interactions defaultQMPTimeout time.Duration = 2 * time.Second - // defaultRemoteUser describes the ssh username default - defaultRemoteUser = "core" ) |