From 62f29fcb398853749fbd3fc102225858936a872d Mon Sep 17 00:00:00 2001 From: lcfang Date: Tue, 12 Dec 2017 09:22:27 +0800 Subject: [PATCH] fixed the some typo in eviction_manager --- pkg/kubelet/eviction/eviction_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/eviction/eviction_manager.go b/pkg/kubelet/eviction/eviction_manager.go index 90b1038cf15..3378bf864c1 100644 --- a/pkg/kubelet/eviction/eviction_manager.go +++ b/pkg/kubelet/eviction/eviction_manager.go @@ -312,7 +312,7 @@ func (m *managerImpl) synchronize(diskInfoProvider DiskInfoProvider, podFunc Act m.Unlock() // evict pods if there is a resource usage violation from local volume temporary storage - // If eviction happens in localVolumeEviction function, skip the rest of eviction action + // If eviction happens in localStorageEviction function, skip the rest of eviction action if utilfeature.DefaultFeatureGate.Enabled(features.LocalStorageCapacityIsolation) { if evictedPods := m.localStorageEviction(activePods); len(evictedPods) > 0 { return evictedPods