Skip to content

Commit 5109853

Browse files
committed
deploy: drop unnecessary resource handlers to reduce dc requeues
No reason to enqueue deployment configs on rc ADDs since there is no new info deployment configs don't know at that point (adoption is not possible). No reason to enqueue on pod ADDs since the only reasons we need pod notification are 1) to bring back DELETEd pods and 2) to update the deployment config status with AvailableReplicas once a pod is UPDATEd to Ready/Available.
1 parent 5250b95 commit 5109853

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

pkg/deploy/controller/deploymentconfig/factory.go

-22
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,11 @@ func NewDeploymentConfigController(dcInformer, rcInformer, podInformer framework
5454
})
5555
c.rcStore.Indexer = rcInformer.GetIndexer()
5656
rcInformer.AddEventHandler(framework.ResourceEventHandlerFuncs{
57-
AddFunc: c.addReplicationController,
5857
UpdateFunc: c.updateReplicationController,
5958
DeleteFunc: c.deleteReplicationController,
6059
})
6160
c.podStore.Indexer = podInformer.GetIndexer()
6261
podInformer.AddEventHandler(framework.ResourceEventHandlerFuncs{
63-
AddFunc: c.addPod,
6462
UpdateFunc: c.updatePod,
6563
DeleteFunc: c.deletePod,
6664
})
@@ -144,20 +142,6 @@ func (c *DeploymentConfigController) deleteDeploymentConfig(obj interface{}) {
144142
c.enqueueDeploymentConfig(dc)
145143
}
146144

147-
// addReplicationController figures out which deploymentconfig is managing this replication
148-
// controller and requeues the deployment config.
149-
// TODO: Determine if we need to resync here. Would be useful for adoption but we cannot
150-
// adopt right now.
151-
func (c *DeploymentConfigController) addReplicationController(obj interface{}) {
152-
rc := obj.(*kapi.ReplicationController)
153-
glog.V(4).Infof("Replication controller %q added.", rc.Name)
154-
// We are waiting for the deployment config store to sync but still there are pathological
155-
// cases of highly latent watches.
156-
if dc, err := c.dcStore.GetConfigForController(rc); err == nil && dc != nil {
157-
c.enqueueDeploymentConfig(dc)
158-
}
159-
}
160-
161145
// updateReplicationController figures out which deploymentconfig is managing this replication
162146
// controller and requeues the deployment config.
163147
func (c *DeploymentConfigController) updateReplicationController(old, cur interface{}) {
@@ -201,12 +185,6 @@ func (c *DeploymentConfigController) deleteReplicationController(obj interface{}
201185
}
202186
}
203187

204-
func (c *DeploymentConfigController) addPod(obj interface{}) {
205-
if dc, err := c.dcStore.GetConfigForPod(obj.(*kapi.Pod)); err == nil && dc != nil {
206-
c.enqueueDeploymentConfig(dc)
207-
}
208-
}
209-
210188
func (c *DeploymentConfigController) updatePod(old, cur interface{}) {
211189
curPod := cur.(*kapi.Pod)
212190
oldPod := old.(*kapi.Pod)

0 commit comments

Comments
 (0)