1podman-pod-kill(1)() podman-pod-kill(1)()
2
3
4
6 podman-pod-kill - Kill the main process of each container in one or
7 more pods
8
9
11 podman pod kill [options] pod ...
12
13
15 The main process of each container inside the pods specified will be
16 sent SIGKILL, or any signal specified with option --signal.
17
18
20 --all, -a
21 Sends signal to all containers associated with a pod.
22
23
24 --latest, -l
25 Instead of providing the pod name or ID, use the last created pod. If
26 you use methods other than Podman to run pods such as CRI-O, the last
27 started pod could be from either of those methods. (This option is not
28 available with the remote Podman client)
29
30
31 --signal, -s
32 Signal to send to the containers in the pod. For more information on
33 Linux signals, refer to man signal(7).
34
35
37 podman pod kill mywebserver
38
39
40 podman pod kill 860a4b23
41
42
43 podman pod kill --signal TERM 860a4b23
44
45
46 podman pod kill --latest
47
48
49 podman pod kill --all
50
51
53 podman-pod(1), podman-pod-stop(1)
54
55
57 July 2018, Originally compiled by Peter Hunt pehunt@redhat.com
58 ⟨mailto:pehunt@redhat.com⟩
59
60
61
62 podman-pod-kill(1)()