podman/cmd/kpod
baude 8cf07b2ad1 libpod create and run
patched version of the same code that went into crio

Signed-off-by: baude <bbaude@redhat.com>
2017-11-01 14:19:19 -05:00
..
docker Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
formats Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
README.md Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
common.go libpod create and run 2017-11-01 14:19:19 -05:00
common_test.go Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
create.go libpod create and run 2017-11-01 14:19:19 -05:00
create_cli.go libpod create and run 2017-11-01 14:19:19 -05:00
diff.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
export.go Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
history.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
images.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
info.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
inspect.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
kill.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
load.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
login.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
logout.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
logs.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
main.go libpod create and run 2017-11-01 14:19:19 -05:00
mount.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
parse.go libpod create and run 2017-11-01 14:19:19 -05:00
pause.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
ps.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
pull.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
push.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
rename.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
rm.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
rmi.go Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
run.go libpod create and run 2017-11-01 14:19:19 -05:00
save.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
spec.go libpod create and run 2017-11-01 14:19:19 -05:00
stats.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
stop.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
tag.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
umount.go Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
unpause.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00
user.go libpod create and run 2017-11-01 14:19:19 -05:00
version.go Initial checkin from CRI-O repo 2017-11-01 11:24:59 -04:00
wait.go Prune Server package. Convert to new github location. 2017-11-01 13:22:04 -04:00

README.md

kpod - Simple debugging tool for pods and images

kpod 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 kpod. kpod does not require any daemon running. kpod 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. kpod 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.