summaryrefslogtreecommitdiff
path: root/libpod/adapter/runtime_remote.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-14 22:52:03 +0100
committerGitHub <noreply@github.com>2019-02-14 22:52:03 +0100
commitae8cc41295c4ff6f6f82372221c66c250691e4f6 (patch)
tree197c210011a5c40a9beccafea8a22c52314f28de /libpod/adapter/runtime_remote.go
parent1a9128d1e4851df7c0316e0b861e70605fd262f6 (diff)
parent5be818e715d57f98e4a930632bc599e3fee3aaed (diff)
downloadpodman-ae8cc41295c4ff6f6f82372221c66c250691e4f6.tar.gz
podman-ae8cc41295c4ff6f6f82372221c66c250691e4f6.tar.bz2
podman-ae8cc41295c4ff6f6f82372221c66c250691e4f6.zip
Merge pull request #2332 from baude/remotevolumeprune
volume prune
Diffstat (limited to 'libpod/adapter/runtime_remote.go')
-rw-r--r--libpod/adapter/runtime_remote.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/libpod/adapter/runtime_remote.go b/libpod/adapter/runtime_remote.go
index a96676ee2..d0a3c5b1f 100644
--- a/libpod/adapter/runtime_remote.go
+++ b/libpod/adapter/runtime_remote.go
@@ -642,3 +642,17 @@ func varlinkVolumeToVolume(r *LocalRuntime, volumes []iopodman.Volume) []*Volume
}
return vols
}
+
+// PruneVolumes removes all unused volumes from the remote system
+func (r *LocalRuntime) PruneVolumes(ctx context.Context) ([]string, []error) {
+ var errs []error
+ prunedNames, prunedErrors, err := iopodman.VolumesPrune().Call(r.Conn)
+ if err != nil {
+ return []string{}, []error{err}
+ }
+ // We need to transform the string results of the error into actual error types
+ for _, e := range prunedErrors {
+ errs = append(errs, errors.New(e))
+ }
+ return prunedNames, errs
+}