summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorAnders F Björklund <anders.f.bjorklund@gmail.com>2021-09-22 12:29:24 +0200
committerMatthew Heon <matthew.heon@pm.me>2021-09-29 16:39:29 -0400
commit2c5382ba981217ef751649302ad15ecd493a6e90 (patch)
treee909eecca3d4c91d6d162960d10b7b1155eee5f3 /pkg
parent57c055f61a96fa49f8a8709297da5e81597e4b48 (diff)
downloadpodman-2c5382ba981217ef751649302ad15ecd493a6e90.tar.gz
podman-2c5382ba981217ef751649302ad15ecd493a6e90.tar.bz2
podman-2c5382ba981217ef751649302ad15ecd493a6e90.zip
Show cpus and memory in machine list
[NO TESTS NEEDED] Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/machine/config.go2
-rw-r--r--pkg/machine/qemu/machine.go2
2 files changed, 4 insertions, 0 deletions
diff --git a/pkg/machine/config.go b/pkg/machine/config.go
index 8db2335aa..583eacbaa 100644
--- a/pkg/machine/config.go
+++ b/pkg/machine/config.go
@@ -58,6 +58,8 @@ type ListResponse struct {
LastUp time.Time
Running bool
VMType string
+ CPUs uint64
+ Memory uint64
}
type SSHOptions struct {
diff --git a/pkg/machine/qemu/machine.go b/pkg/machine/qemu/machine.go
index b9b66c123..281a8b7a9 100644
--- a/pkg/machine/qemu/machine.go
+++ b/pkg/machine/qemu/machine.go
@@ -574,6 +574,8 @@ func GetVMInfos() ([]*machine.ListResponse, error) {
listEntry.Name = vm.Name
listEntry.VMType = "qemu"
+ listEntry.CPUs = vm.CPUs
+ listEntry.Memory = vm.Memory
fi, err := os.Stat(fullPath)
if err != nil {
return err