
crictl
List of commands for crictl:
-
crictl:tldr:026a2 crictl: List all kubernetes pods (Ready and NotReady).$ crictl podstry on your machineexplain this command
-
crictl:tldr:451e9 crictl: Remove one or more images.$ crictl rmi ${image_id1 image_id2 ---}try on your machineexplain this command
-
crictl:tldr:6c94e crictl: Pull a specific image from a registry.$ crictl pull ${image:tag}try on your machineexplain this command
-
crictl:tldr:7da7b crictl: Open a specific shell inside a running container.$ crictl exec -it ${container_id} ${sh}try on your machineexplain this command
-
crictl:tldr:84907 crictl: Print and [f]ollow logs of a specific container.$ crictl logs -f ${container_id}try on your machineexplain this command
-
crictl:tldr:93757 crictl: Print information about specific containers.$ crictl inspect ${container_id1 container_id2 ---}try on your machineexplain this command
-
crictl:tldr:adb23 crictl: List all containers (Running and Exited).$ crictl ps --alltry on your machineexplain this command