diff options
author | baude <bbaude@redhat.com> | 2018-06-22 08:15:37 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-27 04:52:22 +0000 |
commit | 60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5 (patch) | |
tree | 64f11dab9bcdc426956160b6b56ee536bb3aa6e8 /contrib/python/cmd/ps.py | |
parent | 56133f7263337e9b2c9cfb1cfce35adc2366f52b (diff) | |
download | podman-60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5.tar.gz podman-60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5.tar.bz2 podman-60427ab3d26bbe5a5ab00c4e7b550f111b4f72e5.zip |
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
Diffstat (limited to 'contrib/python/cmd/ps.py')
-rw-r--r-- | contrib/python/cmd/ps.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/python/cmd/ps.py b/contrib/python/cmd/ps.py new file mode 100644 index 000000000..85db5489e --- /dev/null +++ b/contrib/python/cmd/ps.py @@ -0,0 +1,19 @@ +from pman import PodmanRemote +from utils import write_out, convert_size, stringTimeToHuman + +def cli(subparser): + imagesp = subparser.add_parser("ps", + help=("list containers")) + imagesp.add_argument("all", action="store_true", help="list all containers") + imagesp.set_defaults(_class=Ps, func='display_all_containers') + + +class Ps(PodmanRemote): + + def display_all_containers(self): + col_fmt = "{0:15}{1:32}{2:22}{3:14}{4:12}{5:30}{6:20}" + write_out(col_fmt.format("CONTAINER ID", "IMAGE", "COMMAND", "CREATED", "STATUS", "PORTS", "NAMES")) + + for i in self.client.containers.list(): + command = " ".join(i["command"]) + write_out(col_fmt.format(i["id"][0:12], i["image"][0:30], command[0:20], stringTimeToHuman(i["createdat"]), i["status"], "", i["names"][0:20])) |