Merge pull request #37505 from k82cn/use_controller_inf

Automatic merge from submit-queue (batch tested with PRs 39807, 37505, 39844, 39525, 39109)

Made cache.Controller to be interface.

**What this PR does / why we need it**:

#37504
This commit is contained in:
Kubernetes Submit Queue
2017-01-13 13:40:41 -08:00
committed by GitHub
36 changed files with 115 additions and 110 deletions

View File

@@ -86,7 +86,7 @@ type ReplicationManager struct {
// A store of pods, populated by the podController
podLister cache.StoreToPodLister
// Watches changes to all pods
podController cache.ControllerInterface
podController cache.Controller
// podListerSynced returns true if the pod store has been synced at least once.
// Added as a member to the struct to allow injection for testing.
podListerSynced func() bool