It seems that on Windows Kubernetes starts a pause
image for each pod that is created. What is the purpose of this pause image? Where can I find more documentation about it?
Asked
Active
Viewed 7,181 times
7

lanoxx
- 12,249
- 13
- 87
- 142
1 Answers
13
The pause
container is a container which holds the network namespace for the pod. Kubernetes creates pause containers to acquire the respective pod’s IP address and set up the network namespace for all other containers that join that pod.
references:
1, https://www.ianlewis.org/en/almighty-pause-container
2, https://groups.google.com/forum/#!topic/kubernetes-users/jVjv0QK4b_o

Ananthu R V
- 428
- 4
- 17