From b0a415e4539a3df444c3120d7444d2a8dd8ada7b Mon Sep 17 00:00:00 2001 From: Jian Qiu Date: Thu, 13 Apr 2017 10:56:47 +0800 Subject: [PATCH] Fix some typo of comment in kubelet.go --- pkg/kubelet/kubelet.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index 6a519fdc707..0cef81c9554 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -1444,12 +1444,12 @@ func (kl *Kubelet) syncPod(o syncPodOptions) error { } // Create Cgroups for the pod and apply resource parameters - // to them if cgroup-per-qos flag is enabled. + // to them if cgroups-per-qos flag is enabled. pcm := kl.containerManager.NewPodContainerManager() // If pod has already been terminated then we need not create // or update the pod's cgroup if !kl.podIsTerminated(pod) { - // When the kubelet is restarted with the cgroup-per-qos + // When the kubelet is restarted with the cgroups-per-qos // flag enabled, all the pod's running containers // should be killed intermittently and brought back up // under the qos cgroup hierarchy.