What work does the process in container “gcr.io/google_containers/pause:0.8.0” do?

前端 未结 3 1558
醉话见心
醉话见心 2020-12-02 17:10

I have known clearly about the usage of the docker option --net=container:NAME_or_ID, I also have read the source code of kubernetes about how to configure the

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-02 17:43

    In Kubernetes, each pod has an IP and within a pod there exists a so called infrastructure container, which is the first container that the Kubelet instantiates and it acquires the pod’s IP and sets up the network namespace. All the other containers in the pod then join the infra container’s network and IPC namespace. The infra container has network bridge mode enabled and all the other containers in the pod share its namespace via container mode. The initial process that runs in the infra container does effectively nothing since its sole purpose is to act as the home for the namespaces.

提交回复
热议问题