github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/docs/source/markdown/podman-pod-kill.1.md (about)

     1  % podman-pod-kill(1)
     2  
     3  ## NAME
     4  podman\-pod\-kill - Kill the main process of each container in one or more pods
     5  
     6  ## SYNOPSIS
     7  **podman pod kill** [*options*] *pod* ...
     8  
     9  ## DESCRIPTION
    10  The main process of each container inside the pods specified will be sent SIGKILL, or any signal specified with option --signal.
    11  
    12  ## OPTIONS
    13  #### **--all**, **-a**
    14  
    15  Sends signal to all containers associated with a pod.
    16  
    17  #### **--latest**, **-l**
    18  
    19  Instead of providing the pod name or ID, use the last created pod. If you use methods other than Podman
    20  to run pods such as CRI-O, the last started pod could be from either of those methods.
    21  
    22  The latest option is not supported on the remote client.
    23  
    24  #### **--signal**, **-s**
    25  
    26  Signal to send to the containers in the pod. For more information on Linux signals, refer to *man signal(7)*.
    27  
    28  
    29  ## EXAMPLE
    30  
    31  podman pod kill mywebserver
    32  
    33  podman pod kill 860a4b23
    34  
    35  podman pod kill --signal TERM 860a4b23
    36  
    37  podman pod kill --latest
    38  
    39  podman pod kill --all
    40  
    41  ## SEE ALSO
    42  podman-pod(1), podman-pod-stop(1)
    43  
    44  ## HISTORY
    45  July 2018, Originally compiled by Peter Hunt <pehunt@redhat.com>