add podman remote client

podman client that is capable of:
 * images
 * ps
 * rm
 * rmi

this is only a mockup to frame out and prove python library and ssh
tunnelling usage.

Signed-off-by: baude <bbaude@redhat.com>

Closes: #986
Approved by: rhatdan
This commit is contained in:
baude
2018-06-22 08:15:37 -05:00
committed by Atomic Bot
parent 56133f7263
commit 60427ab3d2
8 changed files with 298 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class Tunnel(object):
"""Create SSH tunnel from given context."""
cmd = [
'ssh',
'-nNT',
'-nNTq',
'-L',
'{}:{}'.format(self.context.local_socket,
self.context.remote_socket),