spiegel_podman/cmd/podman
baude 04593b1591 Run by shortname
While pulling by shortname (fedora-minimal) worked, running a container
by the short name did not due to a logic error.

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

Closes: #182
Approved by: rhatdan
2018-01-04 17:39:42 +00:00
..
docker Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
formats Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
attach.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
build.go Initial podman build 2017-12-23 11:47:33 +00:00
commit.go Add podman commit command 2017-12-20 10:08:17 +00:00
common.go Host networking 2017-12-30 10:26:14 +00:00
common_test.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
create.go Run by shortname 2018-01-04 17:39:42 +00:00
create_cli.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
create_cli_test.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
diff.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
exec.go Exec: No arg reorder 2017-12-28 16:10:50 +00:00
export.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
history.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
images.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
import.go Add podman commit command 2017-12-20 10:08:17 +00:00
info.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
inspect.go podman create/run need to load information from the image 2018-01-03 12:38:18 +00:00
kill.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
load.go Add podman commit command 2017-12-20 10:08:17 +00:00
login.go Touch up certs-dir verbiage a bit 2017-12-21 09:49:01 +00:00
logout.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
logs.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
main.go Initial podman build 2017-12-23 11:47:33 +00:00
mount.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
parse.go podman create/run need to load information from the image 2018-01-03 12:38:18 +00:00
pause.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
ps.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
pull.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
push.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
README.md Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
rm.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
rmi.go rmi doesn't remove all images if an error occurs 2017-12-19 13:21:56 +00:00
run.go podman create/run need to load information from the image 2018-01-03 12:38:18 +00:00
save.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
spec.go podman create/run need to load information from the image 2018-01-03 12:38:18 +00:00
spec_test.go Vendor in latest storage, image and runtime-tools 2017-12-18 21:19:30 +00:00
start.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
stats.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
stop.go Plumb through the --stop-timeout signal handling 2017-12-20 18:10:43 +00:00
tag.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
top.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
umount.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
unpause.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
user.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
version.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
wait.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00

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.