func (c *DeploymentController) updateReplicationController(old, cur interface{}) { rc := cur.(*kapi.ReplicationController) // Filter out all unrelated replication controllers. if !deployutil.IsOwnedByConfig(rc) { return } c.enqueueReplicationController(rc) }
func (c *DeploymentController) updateReplicationController(old, cur interface{}) { // A periodic relist will send update events for all known controllers. curRC := cur.(*kapi.ReplicationController) oldRC := old.(*kapi.ReplicationController) if curRC.ResourceVersion == oldRC.ResourceVersion { return } // Filter out all unrelated replication controllers. if !deployutil.IsOwnedByConfig(curRC) { return } c.enqueueReplicationController(curRC) }