Skip to content

Commit c68690c

Browse files
Standardize housekeeping capitalization
Previously, the code base had both `housekeeping` and `houseKeeping`, which made case sensitive search in vim difficult. Standardize on `housekeeping`, which was by far the most popular.
1 parent 667c3ed commit c68690c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/kubelet/kubelet.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ func (kl *Kubelet) syncLoop(updates <-chan kubetypes.PodUpdate, handler SyncHand
18411841
// 1. configCh: a channel to read config events from
18421842
// 2. handler: the SyncHandler to dispatch pods to
18431843
// 3. syncCh: a channel to read periodic sync events from
1844-
// 4. houseKeepingCh: a channel to read housekeeping events from
1844+
// 4. housekeepingCh: a channel to read housekeeping events from
18451845
// 5. plegCh: a channel to read PLEG updates from
18461846
//
18471847
// Events are also read from the kubelet liveness manager's update channel.
@@ -1863,7 +1863,7 @@ func (kl *Kubelet) syncLoop(updates <-chan kubetypes.PodUpdate, handler SyncHand
18631863
// handler callback for the event type
18641864
// * plegCh: update the runtime cache; sync pod
18651865
// * syncCh: sync all pods waiting for sync
1866-
// * houseKeepingCh: trigger cleanup of pods
1866+
// * housekeepingCh: trigger cleanup of pods
18671867
// * liveness manager: sync pods that have failed or in which one or more
18681868
// containers have failed liveness checks
18691869
func (kl *Kubelet) syncLoopIteration(configCh <-chan kubetypes.PodUpdate, handler SyncHandler,

0 commit comments

Comments
 (0)