cri-o/cmd/kpod
Ryan Cole 0d4305a261 Implement kpod inspect
kpod inspect allows the user to view low-level information about
containers and images

Signed-off-by: Ryan Cole <rcyoalne@gmail.com>
2017-07-21 08:11:27 -04:00
..
docker Implement kpod inspect 2017-07-21 08:11:27 -04:00
common.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
common_test.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
containerData.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
containerImageData.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
containerImageRef.go Add kpod push command 2017-07-20 11:12:40 -04:00
history.go Add 'kpod history' command 2017-07-19 15:11:25 -04:00
imageData.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
images.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
images_test.go Add 'kpod images' and 'kpod rmi' commands 2017-07-11 15:52:57 -04:00
info.go kpod: info subcommand 2017-07-17 14:23:53 -04:00
inspect.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
main.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
pull.go Add kpod push command 2017-07-20 11:12:40 -04:00
push.go Implement kpod inspect 2017-07-21 08:11:27 -04:00
README.md Rename ocid to crio. 2017-05-12 09:56:06 -04:00
rmi.go Add 'kpod images' and 'kpod rmi' commands 2017-07-11 15:52:57 -04:00
rmi_test.go Add 'kpod images' and 'kpod rmi' commands 2017-07-11 15:52:57 -04:00
tag.go Add kpod tag command 2017-07-06 10:10:51 -04:00
version.go kpod: version should not fail 2017-07-10 17:02:13 -04:00

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.