summaryrefslogtreecommitdiff
path: root/pkg/machine/config.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-30 22:36:25 +0200
committerGitHub <noreply@github.com>2021-03-30 22:36:25 +0200
commita373e2fdf38456b8ac584809e73cdb9f9521a796 (patch)
treeda598460aa5b6a28d43e78d376729df843ec4e1a /pkg/machine/config.go
parentbd07179e9c608ff1075f052843aeb9b1c8b7c7e3 (diff)
parentef4e91a59eed957e56bf1536bc03df94cd096576 (diff)
downloadpodman-a373e2fdf38456b8ac584809e73cdb9f9521a796.tar.gz
podman-a373e2fdf38456b8ac584809e73cdb9f9521a796.tar.bz2
podman-a373e2fdf38456b8ac584809e73cdb9f9521a796.zip
Merge pull request #9885 from ashley-cui/machinels
Add podman machine ls
Diffstat (limited to 'pkg/machine/config.go')
-rw-r--r--pkg/machine/config.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/machine/config.go b/pkg/machine/config.go
index 273deca00..554ea7c97 100644
--- a/pkg/machine/config.go
+++ b/pkg/machine/config.go
@@ -5,6 +5,7 @@ import (
"net/url"
"os"
"path/filepath"
+ "time"
"github.com/containers/storage/pkg/homedir"
"github.com/pkg/errors"
@@ -44,6 +45,16 @@ type Download struct {
VMName string
}
+type ListOptions struct{}
+
+type ListResponse struct {
+ Name string
+ CreatedAt time.Time
+ LastUp time.Time
+ Running bool
+ VMType string
+}
+
type SSHOptions struct {
Execute bool
Args []string