Podman pod create/rm commands with man page and tests.

Includes a very stripped down version of podman pod ps, just for testing

Signed-off-by: haircommander <pehunt@redhat.com>
This commit is contained in:
haircommander
2018-07-09 13:04:29 -04:00
parent a2dde5a50d
commit 1aad3fd96b
15 changed files with 1137 additions and 1 deletions

View File

@ -74,7 +74,7 @@ func (r *Runtime) NewPod(options ...PodCreateOption) (*Pod, error) {
return nil, errors.Wrapf(err, "error adding pod to state")
}
return nil, ErrNotImplemented
return pod, nil
}
func (r *Runtime) removePod(ctx context.Context, p *Pod, removeCtrs, force bool) error {