NAME¶ 名称
podman-pod-kill - Kill the main process of each container in one or more pods
podman-pod-kill - 在一个或多个 pod 中杀死每个容器的主进程
SYNOPSIS¶ 概要
podman pod kill [options] pod …
podman pod kill [选项] pod ...
DESCRIPTION¶ 描述
The main process of each container inside the pods specified is sent SIGKILL, or any signal specified with option --signal.
发送 SIGKILL 信号给指定的每个 pod 中容器的主进程,或者使用选项 --signal 指定的任何信号。
OPTIONS¶ 选项
--all, -a¶
Sends signal to all containers associated with a pod.
发送信号给与 Pod 关联的所有容器。
--latest, -l¶
Instead of providing the pod name or ID, use the last created pod.
Note: the last started pod can be from other users of Podman on the host machine.
(This option is not available with the remote Podman client, including Mac and Windows
(excluding WSL2) machines)
而不是提供 Pod 名称或 ID,请使用最后创建的 Pod。注意:最后启动的 Pod 可能来自主机上其他 Podman 用户。(此选项不适用于远程 Podman 客户端,包括 Mac 和 Windows(不包括 WSL2)机器)
--signal, -s=signal¶ --信号, -s=信号 ¶
Signal to send to the containers in the pod. For more information on Linux signals, refer to signal(7).
The default is SIGKILL.
发送给 Pod 中容器的信号。有关 Linux 信号的更多信息,请参考 signal(7)。默认值为 SIGKILL。
EXAMPLE¶ 例子 ¶
Kill pod with a given name:
使用给定名称杀死 Pod:
podman pod kill mywebserver
Kill pod with a given ID:
使用给定的 ID 杀死 pod:
podman pod kill 860a4b23
Terminate pod by sending TERM
signal:
通过发送 TERM
信号终止 pod:
podman pod kill --signal TERM 860a4b23
Kill the latest pod. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines):
杀死最新的 pod。(此选项在远程 Podman 客户端中不可用,包括 Mac 和 Windows(不包括 WSL2)机器):
podman pod kill --latest
Terminate all pods by sending KILL
signal:
通过发送 KILL
信号终止所有 pod:
podman pod kill --all
SEE ALSO¶ 参见 ¶
HISTORY¶ 历史 ¶
July 2018, Originally compiled by Peter Hunt pehunt@redhat.com
2018 年 7 月,最初由 Peter Hunt pehunt@redhat.com 编译