diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-21 22:20:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-21 22:20:40 +0200 |
commit | efc54c3987f95fd94b5e0aa41dd307be49d1b31b (patch) | |
tree | 1820209fcc96b950caac0fc7a9a45c0b75a10823 /cmd/podman | |
parent | d2591a54335424263374a919d485712e5b8aa093 (diff) | |
parent | 03da8b641df1c03aea6f9faa3ddc2b0df64ec68b (diff) | |
download | podman-efc54c3987f95fd94b5e0aa41dd307be49d1b31b.tar.gz podman-efc54c3987f95fd94b5e0aa41dd307be49d1b31b.tar.bz2 podman-efc54c3987f95fd94b5e0aa41dd307be49d1b31b.zip |
Merge pull request #4284 from mheon/fix_vol_inspect
Show volume options in 'volume inspect'
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 13e8394fb..dca366bc5 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -1268,6 +1268,10 @@ method VolumeRemove(options: VolumeRemoveOpts) -> (successes: []string, failures # GetVolumes gets slice of the volumes on a remote host method GetVolumes(args: []string, all: bool) -> (volumes: []Volume) +# InspectVolume inspects a single volume. Returns inspect JSON in the form of a +# string. +method InspectVolume(name: string) -> (volume: string) + # VolumesPrune removes unused volumes on the host method VolumesPrune() -> (prunedNames: []string, prunedErrors: []string) |