diff options
author | baude <bbaude@redhat.com> | 2019-02-10 16:43:00 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-11 14:48:07 -0600 |
commit | 358da6c8c0375ad41c4669aeef71f9626710c83e (patch) | |
tree | d94d2b1c422ebc13982bbaf98b6b9b43b861a407 /cmd/podman/commands_remoteclient.go | |
parent | acf2e913730a27fcdc3fcd7c160aa19e071dde36 (diff) | |
download | podman-358da6c8c0375ad41c4669aeef71f9626710c83e.tar.gz podman-358da6c8c0375ad41c4669aeef71f9626710c83e.tar.bz2 podman-358da6c8c0375ad41c4669aeef71f9626710c83e.zip |
podman-remote volume create
create a volume using the remote client over varlink
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/commands_remoteclient.go')
-rw-r--r-- | cmd/podman/commands_remoteclient.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/commands_remoteclient.go b/cmd/podman/commands_remoteclient.go index 80083eab9..993137fde 100644 --- a/cmd/podman/commands_remoteclient.go +++ b/cmd/podman/commands_remoteclient.go @@ -25,7 +25,9 @@ func getPodSubCommands() []*cobra.Command { } func getVolumeSubCommands() []*cobra.Command { - return []*cobra.Command{} + return []*cobra.Command{ + _volumeCreateCommand, + } } func getGenerateSubCommands() []*cobra.Command { |