Kubernetes 中的暂停图像有什么用?

What is the use of a pause image in Kubernetes?

似乎在 Windows 上,Kubernetes 为每个创建的 pod 启动了一个 pause 映像。这个暂停图像的目的是什么?我在哪里可以找到更多关于它的文档?

pause 容器是一个包含 pod 网络命名空间的容器。 Kubernetes 创建暂停容器以获取相应 pod 的 IP 地址并为加入该 pod 的所有其他容器设置网络命名空间。

参考文献:

1, https://www.ianlewis.org/en/almighty-pause-container

2,https://groups.google.com/forum/#!topic/kubernetes-users/jVjv0QK4b_o

3, https://github.com/kubernetes-sigs/cri-o/issues/91