diff options
author | baude <bbaude@redhat.com> | 2019-02-22 11:07:18 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-22 17:00:24 -0600 |
commit | 4bf973a9f61eae3b02925a42ccfa784baeb917dc (patch) | |
tree | 60e9ea8473b2f33c39e46f3954e3e4201a63dc63 /pkg/adapter/containers_remote.go | |
parent | c00bf28f24e2eed435c156cd1aabe59c10fe9824 (diff) | |
download | podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.gz podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.tar.bz2 podman-4bf973a9f61eae3b02925a42ccfa784baeb917dc.zip |
Enable more podman-remote pod commands
enable pod start, stop, and kill subcommands for the remote-client.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/adapter/containers_remote.go')
-rw-r--r-- | pkg/adapter/containers_remote.go | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/pkg/adapter/containers_remote.go b/pkg/adapter/containers_remote.go new file mode 100644 index 000000000..9623304e5 --- /dev/null +++ b/pkg/adapter/containers_remote.go @@ -0,0 +1,50 @@ +// +build remoteclient + +package adapter + +import ( + "encoding/json" + + iopodman "github.com/containers/libpod/cmd/podman/varlink" + "github.com/containers/libpod/libpod" + "github.com/containers/libpod/pkg/inspect" +) + +// Inspect returns an inspect struct from varlink +func (c *Container) Inspect(size bool) (*inspect.ContainerInspectData, error) { + reply, err := iopodman.ContainerInspectData().Call(c.Runtime.Conn, c.ID()) + if err != nil { + return nil, err + } + data := inspect.ContainerInspectData{} + if err := json.Unmarshal([]byte(reply), &data); err != nil { + return nil, err + } + return &data, err +} + +// ID returns the ID of the container +func (c *Container) ID() string { + return c.config.ID +} + +// GetArtifact returns a container's artifacts +func (c *Container) GetArtifact(name string) ([]byte, error) { + var data []byte + reply, err := iopodman.ContainerArtifacts().Call(c.Runtime.Conn, c.ID(), name) + if err != nil { + return nil, err + } + if err := json.Unmarshal([]byte(reply), &data); err != nil { + return nil, err + } + return data, err +} + +// Config returns a container's Config ... same as ctr.Config() +func (c *Container) Config() *libpod.ContainerConfig { + if c.config != nil { + return c.config + } + return c.Runtime.Config(c.ID()) +} |