diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-22 21:12:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-22 21:12:49 +0100 |
commit | c757cb23ca15634077a8b9fa33aba7abd1c8249b (patch) | |
tree | cf98450129274946d9a79d321755d76d115ee3ba /cmd/podman/pod.go | |
parent | 8039ccf4d560acbc308066cf8996bc4e6167a4a9 (diff) | |
parent | bc6b4aa39c9156f31a5d370b19e91f42e0f14181 (diff) | |
download | podman-c757cb23ca15634077a8b9fa33aba7abd1c8249b.tar.gz podman-c757cb23ca15634077a8b9fa33aba7abd1c8249b.tar.bz2 podman-c757cb23ca15634077a8b9fa33aba7abd1c8249b.zip |
Merge pull request #2402 from baude/remotepodinspect
podman-remote pod inspect|exists
Diffstat (limited to 'cmd/podman/pod.go')
-rw-r--r-- | cmd/podman/pod.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/podman/pod.go b/cmd/podman/pod.go index cf87730d7..d65e0b384 100644 --- a/cmd/podman/pod.go +++ b/cmd/podman/pod.go @@ -20,6 +20,8 @@ var podCommand = cliconfig.PodmanCommand{ //podSubCommands are implemented both in local and remote clients var podSubCommands = []*cobra.Command{ + _podExistsCommand, + _podInspectCommand, _podRmCommand, } |