summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-21 16:51:23 +0100
committerGitHub <noreply@github.com>2019-02-21 16:51:23 +0100
commit28d6eeb57a46b8df8960cff6bf6748c4611b61ef (patch)
treeafbedcfd6da81a0d4d924c8360a220241775e0db /pkg
parentfc1b1ff6919b257739371079097803b0cb1b3ed2 (diff)
parente91ec38a70f4755d06972a0b65edd1f2e5366581 (diff)
downloadpodman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.tar.gz
podman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.tar.bz2
podman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.zip
Merge pull request #2387 from baude/remotepodrm
enable podman-remote pod rm
Diffstat (limited to 'pkg')
-rw-r--r--pkg/varlinkapi/pods.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/varlinkapi/pods.go b/pkg/varlinkapi/pods.go
index 6e758786a..1dd864d03 100644
--- a/pkg/varlinkapi/pods.go
+++ b/pkg/varlinkapi/pods.go
@@ -2,6 +2,7 @@ package varlinkapi
import (
"encoding/json"
+ "github.com/containers/libpod/libpod/adapter/shortcuts"
"github.com/containers/libpod/pkg/rootless"
"syscall"
@@ -271,3 +272,17 @@ func (i *LibpodAPI) GetPodStats(call iopodman.VarlinkCall, name string) error {
}
return call.ReplyGetPodStats(pod.ID(), containersStats)
}
+
+// GetPodsByContext returns a slice of pod ids based on all, latest, or a list
+func (i *LibpodAPI) GetPodsByContext(call iopodman.VarlinkCall, all, latest bool, input []string) error {
+ var podids []string
+
+ pods, err := shortcuts.GetPodsByContext(all, latest, input, i.Runtime)
+ if err != nil {
+ return call.ReplyErrorOccurred(err.Error())
+ }
+ for _, p := range pods {
+ podids = append(podids, p.ID())
+ }
+ return call.ReplyGetPodsByContext(podids)
+}