automation-tests/cmd/podman
baude 39a7a773a6 varlink images
implement varlink image functions for working with libpod with the exception of a
couple due to incompletions on the libpod side of things (build).

also, created a first pass at a libpodpy package which will stand as a client to
working with libpod's varlink methods using python.

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

Closes: #669
Approved by: baude
2018-04-26 19:14:44 +00:00
..
docker Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
formats Unescape characters in inspect JSON format output 2018-04-10 14:05:25 +00:00
libpodruntime varlink images 2018-04-26 19:14:44 +00:00
varlink varlink images 2018-04-26 19:14:44 +00:00
README.md Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
attach.go varlink images 2018-04-26 19:14:44 +00:00
build.go Add buildah bud options from common.go 2018-03-06 23:55:46 +00:00
commit.go varlink images 2018-04-26 19:14:44 +00:00
common.go Vendor in latest containers/image and contaners/storage 2018-04-19 14:08:47 +00:00
common_test.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
create.go varlink images 2018-04-26 19:14:44 +00:00
create_cli.go Implement and test the following flags for podman run and create 2018-01-15 19:27:10 +00:00
create_cli_test.go Implement and test the following flags for podman run and create 2018-01-15 19:27:10 +00:00
diff.go varlink images 2018-04-26 19:14:44 +00:00
exec.go varlink images 2018-04-26 19:14:44 +00:00
export.go varlink images 2018-04-26 19:14:44 +00:00
history.go varlink images 2018-04-26 19:14:44 +00:00
images.go varlink images 2018-04-26 19:14:44 +00:00
import.go varlink images 2018-04-26 19:14:44 +00:00
info.go varlink images 2018-04-26 19:14:44 +00:00
inspect.go varlink images 2018-04-26 19:14:44 +00:00
kill.go varlink images 2018-04-26 19:14:44 +00:00
load.go varlink images 2018-04-26 19:14:44 +00:00
login.go Fix build after c/image changes 2018-03-16 14:35:07 +00:00
logout.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
logs.go varlink images 2018-04-26 19:14:44 +00:00
main.go Add --default-mounts-file hidden flag 2018-04-26 16:33:25 +00:00
mount.go varlink images 2018-04-26 19:14:44 +00:00
parse.go Remove dependency on kubernetes 2018-03-27 21:55:33 +00:00
pause.go varlink images 2018-04-26 19:14:44 +00:00
port.go varlink images 2018-04-26 19:14:44 +00:00
ps.go varlink images 2018-04-26 19:14:44 +00:00
pull.go varlink images 2018-04-26 19:14:44 +00:00
push.go varlink images 2018-04-26 19:14:44 +00:00
restart.go varlink images 2018-04-26 19:14:44 +00:00
rm.go varlink images 2018-04-26 19:14:44 +00:00
rmi.go varlink images 2018-04-26 19:14:44 +00:00
run.go varlink images 2018-04-26 19:14:44 +00:00
run_test.go Functionality changes to the following flags 2018-04-06 00:09:46 +00:00
save.go varlink images 2018-04-26 19:14:44 +00:00
search.go varlink images 2018-04-26 19:14:44 +00:00
sigproxy.go Add signal proxying to podman run, start, and attach 2018-03-15 16:00:20 -04:00
spec.go Functionality changes to the following flags 2018-04-06 00:09:46 +00:00
spec_test.go Implement --image-volumes for create and run 2018-02-22 15:14:00 +00:00
start.go varlink images 2018-04-26 19:14:44 +00:00
stats.go varlink images 2018-04-26 19:14:44 +00:00
stop.go varlink images 2018-04-26 19:14:44 +00:00
tag.go varlink images 2018-04-26 19:14:44 +00:00
top.go varlink images 2018-04-26 19:14:44 +00:00
umount.go varlink images 2018-04-26 19:14:44 +00:00
unpause.go varlink images 2018-04-26 19:14:44 +00:00
user.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
utils.go varlink images 2018-04-26 19:14:44 +00:00
varlink.go varlink images 2018-04-26 19:14:44 +00:00
version.go Initial varlink implementation 2018-04-23 14:29:45 +00:00
wait.go varlink images 2018-04-26 19:14:44 +00:00

README.md

podman - Simple debugging tool for pods and images

podman is a simple client only tool to help with debugging issues when daemons such as CRI runtime and the kubelet are not responding or failing. A shared API layer could be created to share code between the daemon and podman. podman does not require any daemon running. podman utilizes the same underlying components that crio uses i.e. containers/image, container/storage, oci-runtime-tool/generate, runc or any other OCI compatible runtime. podman shares state with crio and so has the capability to debug pods/images created by crio.

Use cases

  1. List pods.
  2. Launch simple pods (that require no daemon support).
  3. Exec commands in a container in a pod.
  4. Launch additional containers in a pod.
  5. List images.
  6. Remove images not in use.
  7. Pull images.
  8. Check image size.
  9. Report pod disk resource usage.