mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-28 19:27:58 +00:00
When trying to tag an alias (tag) of an image using only the shortname and no tag, we were unable to find the image in storage. This corrects that issue and adds an integration test to protect against regression. I also updated the man page per the filed issue. While writing the integration test, I discovered that inspect could also not find a tagged image without its :tag. Resolves Issue #385 Resolves Issue #384 Signed-off-by: baude <bbaude@redhat.com> Closes: #398 Approved by: mheon |
||
|---|---|---|
| .. | ||
| docker | ||
| formats | ||
| attach.go | ||
| build.go | ||
| commit.go | ||
| common.go | ||
| common_test.go | ||
| create.go | ||
| create_cli.go | ||
| create_cli_test.go | ||
| diff.go | ||
| exec.go | ||
| export.go | ||
| history.go | ||
| images.go | ||
| import.go | ||
| info.go | ||
| inspect.go | ||
| kill.go | ||
| load.go | ||
| login.go | ||
| logout.go | ||
| logs.go | ||
| main.go | ||
| mount.go | ||
| parse.go | ||
| pause.go | ||
| port.go | ||
| ps.go | ||
| pull.go | ||
| push.go | ||
| README.md | ||
| rm.go | ||
| rmi.go | ||
| run.go | ||
| run_test.go | ||
| save.go | ||
| search.go | ||
| spec.go | ||
| spec_test.go | ||
| start.go | ||
| stats.go | ||
| stop.go | ||
| tag.go | ||
| top.go | ||
| umount.go | ||
| unpause.go | ||
| user.go | ||
| utils.go | ||
| version.go | ||
| wait.go | ||
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
- List pods.
- Launch simple pods (that require no daemon support).
- Exec commands in a container in a pod.
- Launch additional containers in a pod.
- List images.
- Remove images not in use.
- Pull images.
- Check image size.
- Report pod disk resource usage.