Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
crictl Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# crictl
> Command-line for CRI-compatible container runtimes.
> More information: <https://github.com/kubernetes-sigs/cri-tools/blob/master/docs/crictl.md>.
- List all kubernetes pods (Ready and NotReady):
`crictl pods`
- List all containers (Running and Exited):
`crictl ps --all`
- List all images:
`crictl images`
- Print information about specific containers:
`crictl inspect {{container_id1 container_id2 ...}}`
- Open a specific shell inside a running container:
`crictl exec -it {{container_id}} {{sh}}`
- Pull a specific image from a registry:
`crictl pull {{image:tag}}`
- Print and [f]ollow logs of a specific container:
`crictl logs -f {{container_id}}`
- Remove one or more images:
`crictl rmi {{image_id1 image_id2 ...}}`