automation-tests/cmd/podman
baude 445aaf87fa images --all developer note
podman does not implement --all for images

intermediate images are only generated during the build process.  they are
children to the image once built. until buildah supports caching builds,
it will not generate these intermediate images.

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

Closes: #344
Approved by: rhatdan
2018-02-16 16:08:08 +00:00
..
docker Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
formats Fix when the --format flag prints a new line at the end 2018-02-07 10:43:16 -05:00
README.md Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
attach.go Shortcut for most recent container 2018-01-08 19:12:17 +00:00
build.go Add some global options to build 2018-02-08 20:17:17 +00:00
commit.go Add podman commit command 2017-12-20 10:08:17 +00:00
common.go Honor ENTRYPOINT in image 2018-02-11 10:21:46 +00:00
common_test.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
create.go No entrpoint, cmd, or command 2018-02-15 00:48:13 +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 Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
exec.go Shortcut for most recent container 2018-01-08 19:12:17 +00:00
export.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
history.go Fix podman stats based on QE feedback 2018-01-25 03:23:10 +00:00
images.go images --all developer note 2018-02-16 16:08:08 +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 Change json to match docker inspect 2018-02-11 11:50:34 +00:00
kill.go Shortcut for most recent container 2018-01-08 19:12:17 +00:00
load.go Add podman commit command 2017-12-20 10:08:17 +00:00
login.go Fix --cert-dir path for podman login 2018-02-02 16:57:54 +00:00
logout.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
logs.go podman logs: fix tailing 2018-02-09 15:27:52 +00:00
main.go Add podman version 2018-02-15 20:13:08 +00:00
mount.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
parse.go Allow users to specify logpath 2018-02-03 19:49:14 +00:00
pause.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
port.go podman port 2018-01-23 08:54:57 -06:00
ps.go PS performance cleanups 2018-02-14 15:18:43 +00:00
pull.go Return imageid from podman pull 2018-02-15 17:18:08 +00:00
push.go Change un/pwd handling to match Buildah's 2018-02-06 09:29:23 -05:00
rm.go Fix output for created containers 2018-01-18 18:32:10 +00:00
rmi.go Remove by shortname 2018-01-08 18:15:55 +00:00
run.go cleanup network stack as well as storage when container shuts down. 2018-02-08 06:42:21 -05:00
run_test.go Change json to match docker inspect 2018-02-11 11:50:34 +00:00
save.go Fix issue with order of flags 2018-01-25 02:28:07 +00:00
search.go Add podman search command 2018-02-06 18:09:31 +00:00
spec.go Privileged containers should inherit host devices 2018-02-15 00:20:47 +00:00
spec_test.go Set default configuration container type annotation to sandbox 2018-02-01 07:15:59 +00:00
start.go cleanup network stack as well as storage when container shuts down. 2018-02-08 06:42:21 -05:00
stats.go Fix tab issue with --format flag 2018-01-27 08:25:54 +00:00
stop.go Add StopWithTimeout API function for containers 2018-01-30 05:02:12 +00:00
tag.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
top.go Deprecate --format for podman top 2018-02-05 15:41:06 +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
utils.go Honor storage-driver flag 2018-01-29 08:18:05 -05:00
version.go Rename all references to kpod to podman 2017-12-18 16:46:05 +00:00
wait.go Add latest to wait 2018-01-08 22:44:38 +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.