diff options
author | Anders F Björklund <anders.f.bjorklund@gmail.com> | 2021-09-22 12:29:24 +0200 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-09-29 16:39:29 -0400 |
commit | 2c5382ba981217ef751649302ad15ecd493a6e90 (patch) | |
tree | e909eecca3d4c91d6d162960d10b7b1155eee5f3 /pkg/machine/config.go | |
parent | 57c055f61a96fa49f8a8709297da5e81597e4b48 (diff) | |
download | podman-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/machine/config.go')
-rw-r--r-- | pkg/machine/config.go | 2 |
1 files changed, 2 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 { |