From 4772931e638fd76e924ed69e7b40b12b34b902c1 Mon Sep 17 00:00:00 2001 From: timchenxiaoyu <837829664@qq.com> Date: Tue, 28 Feb 2017 13:50:25 +0800 Subject: [PATCH] fix reconcile typo --- pkg/kubelet/status/status_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/status/status_manager.go b/pkg/kubelet/status/status_manager.go index ab52734f2a3..1b8c35101ab 100644 --- a/pkg/kubelet/status/status_manager.go +++ b/pkg/kubelet/status/status_manager.go @@ -484,7 +484,7 @@ func (m *manager) couldBeDeleted(uid types.UID, status v1.PodStatus) bool { // needsReconcile compares the given status with the status in the pod manager (which // in fact comes from apiserver), returns whether the status needs to be reconciled with // the apiserver. Now when pod status is inconsistent between apiserver and kubelet, -// kubelet should forcibly send an update to reconclie the inconsistence, because kubelet +// kubelet should forcibly send an update to reconcile the inconsistence, because kubelet // should be the source of truth of pod status. // NOTE(random-liu): It's simpler to pass in mirror pod uid and get mirror pod by uid, but // now the pod manager only supports getting mirror pod by static pod, so we have to pass