diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-25 21:57:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-25 21:57:42 +0100 |
commit | cf521449e5d11813571c5e9b86668fbefdd5aa99 (patch) | |
tree | 59fd18a92ea2bc40cb3cf16c9cd6a0f178b74e65 /cmd/podman/pod.go | |
parent | e45c44208067f4ac26c5136842d5a17478f5234c (diff) | |
parent | 43a1686598c92c9e2a839909b8b5edb9f1b0f00f (diff) | |
download | podman-cf521449e5d11813571c5e9b86668fbefdd5aa99.tar.gz podman-cf521449e5d11813571c5e9b86668fbefdd5aa99.tar.bz2 podman-cf521449e5d11813571c5e9b86668fbefdd5aa99.zip |
Merge pull request #2422 from baude/remotepodcreate
podman-remote create|ps
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 4c7c416ce..b4c6ca688 100644 --- a/cmd/podman/pod.go +++ b/cmd/podman/pod.go @@ -20,9 +20,11 @@ var podCommand = cliconfig.PodmanCommand{ //podSubCommands are implemented both in local and remote clients var podSubCommands = []*cobra.Command{ + _podCreateCommand, _podExistsCommand, _podInspectCommand, _podKillCommand, + _podPsCommand, _podRmCommand, _podStartCommand, _podStopCommand, |