diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-12 02:54:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 02:54:34 +0100 |
commit | ea20ead35b69b1259f2ff3b00f558c473a921b95 (patch) | |
tree | 9a7e3faba300608db3dd2ee24fbaf02ebf9e66a3 /cmd/podman/commands_remoteclient.go | |
parent | 54a5584d84d37632c1c8480d437a012625526a84 (diff) | |
parent | 358da6c8c0375ad41c4669aeef71f9626710c83e (diff) | |
download | podman-ea20ead35b69b1259f2ff3b00f558c473a921b95.tar.gz podman-ea20ead35b69b1259f2ff3b00f558c473a921b95.tar.bz2 podman-ea20ead35b69b1259f2ff3b00f558c473a921b95.zip |
Merge pull request #2313 from baude/remotevolumecreate
podman-remote volume create
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 ba0c39087..e1f68405e 100644 --- a/cmd/podman/commands_remoteclient.go +++ b/cmd/podman/commands_remoteclient.go @@ -33,7 +33,9 @@ func getPodSubCommands() []*cobra.Command { // commands that only the remoteclient implements func getVolumeSubCommands() []*cobra.Command { - return []*cobra.Command{} + return []*cobra.Command{ + _volumeCreateCommand, + } } // commands that only the remoteclient implements |