Kubelet container runtime call

hey there here we can how kubelet call cri container runtime interface directly without docker daemon that k8s remove it we should go in this location

root@amaan-control-plane:/var/lib/kubelet# cat kubeadm-flags.env 
KUBELET_KUBEADM_ARGS="--container-runtime-endpoint=unix:///run/containerd/containerd.sock --node-ip=172.18.0.5 --node-labels= --pod-infra-container-image=registry.k8s.io/pause:3.10 --provider-id=kind://docker/amaan/amaan-control-plane"

here we can see container-runtime-endpoints which is intalled in node fs so here we can also get to know that process of container are deploy by node kernel we can also see it in

/proc/<procces-id>

we can get to know by this getting in proccess-id directory how much one of the application is getting resources consumed

that was fact i was about share :grinning:

There’s another option set here, that’s the --pod-infra-container-image flag points at a pause container based on which the Pods, mainly multi-container Pods are implemented in Kubernetes.
More on this here.

Yes that pause hold ip network namespace of pod i think so