From ee82de565abfa3a242e5349237fda06445c4bf9f Mon Sep 17 00:00:00 2001 From: Malepati Bala Siva Sai Akhil Date: Sat, 5 Aug 2017 16:20:49 +0530 Subject: [PATCH] Fixed typo in comment in eviction_manager Fixed typo in comment in eviction_manager --- pkg/kubelet/eviction/eviction_manager.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/eviction/eviction_manager.go b/pkg/kubelet/eviction/eviction_manager.go index f4b19cd5441..5841afe7cdd 100644 --- a/pkg/kubelet/eviction/eviction_manager.go +++ b/pkg/kubelet/eviction/eviction_manager.go @@ -309,8 +309,8 @@ func (m *managerImpl) synchronize(diskInfoProvider DiskInfoProvider, podFunc Act m.lastObservations = observations m.Unlock() - // evict pods if there is a resource uage violation from local volume temporary storage - // If eviction happenes in localVolumeEviction function, skip the rest of eviction action + // 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 utilfeature.DefaultFeatureGate.Enabled(features.LocalStorageCapacityIsolation) { if evictedPods := m.localStorageEviction(activePods); len(evictedPods) > 0 { return evictedPods