Forrest logo
back to context overview

crictl

List of commands for crictl:

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