diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-13 20:20:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-13 20:20:10 +0100 |
commit | fa3b91dc1216e6057e24a574bec566401800d780 (patch) | |
tree | 5a0a43a03a17ad51678695a9d65270725b0b7893 /libpod/adapter/volumes_remote.go | |
parent | 8a16f83b0a13ab9de1cc905a3ff1132c75739995 (diff) | |
parent | 4f60f79a27012220afdbcf8f2f4bb4622ca8c176 (diff) | |
download | podman-fa3b91dc1216e6057e24a574bec566401800d780.tar.gz podman-fa3b91dc1216e6057e24a574bec566401800d780.tar.bz2 podman-fa3b91dc1216e6057e24a574bec566401800d780.zip |
Merge pull request #2316 from baude/remotevolumeinspect
podman-remote volume inspect|ls
Diffstat (limited to 'libpod/adapter/volumes_remote.go')
-rw-r--r-- | libpod/adapter/volumes_remote.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libpod/adapter/volumes_remote.go b/libpod/adapter/volumes_remote.go new file mode 100644 index 000000000..beacd943a --- /dev/null +++ b/libpod/adapter/volumes_remote.go @@ -0,0 +1,33 @@ +// +build remoteclient + +package adapter + +// Name returns the name of the volume +func (v *Volume) Name() string { + return v.config.Name +} + +//Labels returns the labels for a volume +func (v *Volume) Labels() map[string]string { + return v.config.Labels +} + +// Driver returns the driver for the volume +func (v *Volume) Driver() string { + return v.config.Driver +} + +// Options returns the options a volume was created with +func (v *Volume) Options() map[string]string { + return v.config.Options +} + +// MountPath returns the path the volume is mounted to +func (v *Volume) MountPoint() string { + return v.config.MountPoint +} + +// Scope returns the scope for an adapter.volume +func (v *Volume) Scope() string { + return v.config.Scope +} |