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.
28
29
30 The latest option is not supported on the remote client.
31
32
33 --signal, -s
34 Signal to send to the containers in the pod. For more information on
35 Linux signals, refer to man signal(7).
36
37
39 podman pod kill mywebserver
40
41
42 podman pod kill 860a4b23
43
44
45 podman pod kill --signal TERM 860a4b23
46
47
48 podman pod kill --latest
49
50
51 podman pod kill --all
52
53
55 podman-pod(1), podman-pod-stop(1)
56
57
59 July 2018, Originally compiled by Peter Hunt pehunt@redhat.com
60 ⟨mailto:pehunt@redhat.com⟩
61
62
63
64 podman-pod-kill(1)()