summaryrefslogtreecommitdiff
path: root/cmd/podman/pod.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-21 16:51:23 +0100
committerGitHub <noreply@github.com>2019-02-21 16:51:23 +0100
commit28d6eeb57a46b8df8960cff6bf6748c4611b61ef (patch)
treeafbedcfd6da81a0d4d924c8360a220241775e0db /cmd/podman/pod.go
parentfc1b1ff6919b257739371079097803b0cb1b3ed2 (diff)
parente91ec38a70f4755d06972a0b65edd1f2e5366581 (diff)
downloadpodman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.tar.gz
podman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.tar.bz2
podman-28d6eeb57a46b8df8960cff6bf6748c4611b61ef.zip
Merge pull request #2387 from baude/remotepodrm
enable podman-remote pod rm
Diffstat (limited to 'cmd/podman/pod.go')
-rw-r--r--cmd/podman/pod.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/podman/pod.go b/cmd/podman/pod.go
index e988875ab..cf87730d7 100644
--- a/cmd/podman/pod.go
+++ b/cmd/podman/pod.go
@@ -18,7 +18,13 @@ var podCommand = cliconfig.PodmanCommand{
},
}
+//podSubCommands are implemented both in local and remote clients
+var podSubCommands = []*cobra.Command{
+ _podRmCommand,
+}
+
func init() {
+ podCommand.AddCommand(podSubCommands...)
podCommand.AddCommand(getPodSubCommands()...)
podCommand.SetUsageTemplate(UsageTemplate())
}