From b64b2feb0c538d4541558a22648b5326a40a8924 Mon Sep 17 00:00:00 2001 From: "ziyin.lu" Date: Sun, 14 Feb 2021 23:16:21 +0800 Subject: [PATCH] kubelet: Imporve cmd comment for how kubelet works --- cmd/kubelet/kubelet.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/kubelet/kubelet.go b/cmd/kubelet/kubelet.go index ca4e759b27c..d10d654df9b 100644 --- a/cmd/kubelet/kubelet.go +++ b/cmd/kubelet/kubelet.go @@ -16,8 +16,9 @@ limitations under the License. // The kubelet binary is responsible for maintaining a set of containers on a particular host VM. // It syncs data from both configuration file(s) as well as from a quorum of etcd servers. -// It then queries Docker to see what is currently running. It synchronizes the configuration data, -// with the running set of containers by starting or stopping Docker containers. +// It then communicates with the container runtime (or a CRI shim for the runtime) to see what is +// currently running. It synchronizes the configuration data, with the running set of containers +// by starting or stopping containers. package main import (