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
22
23 Sends signal to all containers associated with a pod.
24
25
26 --latest, -l
27
28
29 Instead of providing the pod name or ID, use the last created pod. If
30 you use methods other than Podman to run pods such as CRI-O, the last
31 started pod could be from either of those methods.
32
33
34 The latest option is not supported on the remote client.
35
36
37 --signal, -s
38
39
40 Signal to send to the containers in the pod. For more information on
41 Linux signals, refer to man signal(7).
42
43
45 podman pod kill mywebserver
46
47
48 podman pod kill 860a4b23
49
50
51 podman pod kill --signal TERM 860a4b23
52
53
54 podman pod kill --latest
55
56
57 podman pod kill --all
58
59
61 podman-pod(1), podman-pod-stop(1)
62
63
65 July 2018, Originally compiled by Peter Hunt pehunt@redhat.com
66 ⟨mailto:pehunt@redhat.com⟩
67
68
69
70 podman-pod-kill(1)()