summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-02-20 15:02:18 -0600
committerbaude <bbaude@redhat.com>2019-02-21 08:40:42 -0600
commite91ec38a70f4755d06972a0b65edd1f2e5366581 (patch)
tree4f5792f6662ebe43bee3331354c13585351eb81e /pkg
parent4934bf23272f185fa9f08d0ba890c5a0eb4ed14d (diff)
downloadpodman-e91ec38a70f4755d06972a0b65edd1f2e5366581.tar.gz
podman-e91ec38a70f4755d06972a0b65edd1f2e5366581.tar.bz2
podman-e91ec38a70f4755d06972a0b65edd1f2e5366581.zip
enable podman-remote pod rm
add the ability to delete a pod from the remote client. Signed-off-by: baude <bbaude@redhat.com>
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)
+}