Merge pull request #80519 from ethan-daocloud/patch-1

fix typos in kubelet.go
This commit is contained in:
Kubernetes Prow Robot 2019-08-12 20:11:51 -07:00 committed by GitHub
commit 56b5f8b47c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -782,7 +782,7 @@ func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration,
tokenManager := token.NewManager(kubeDeps.KubeClient)
// NewInitializedVolumePluginMgr intializes some storageErrors on the Kubelet runtimeState (in csi_plugin.go init)
// NewInitializedVolumePluginMgr initializes some storageErrors on the Kubelet runtimeState (in csi_plugin.go init)
// which affects node ready status. This function must be called before Kubelet is initialized so that the Node
// ReadyState is accurate with the storage state.
klet.volumePluginMgr, err =
@ -2278,7 +2278,7 @@ func (kl *Kubelet) fastStatusUpdateOnce() {
// isSyncPodWorthy filters out events that are not worthy of pod syncing
func isSyncPodWorthy(event *pleg.PodLifecycleEvent) bool {
// ContatnerRemoved doesn't affect pod state
// ContainerRemoved doesn't affect pod state
return event.Type != pleg.ContainerRemoved
}