Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for EndpointUpdatesBatchPeriod (0.4 sec)

  1. pkg/controller/endpoint/config/v1alpha1/zz_generated.conversion.go

    	out.ConcurrentEndpointSyncs = in.ConcurrentEndpointSyncs
    	out.EndpointUpdatesBatchPeriod = in.EndpointUpdatesBatchPeriod
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/config/types.go

    	// but more CPU (and network) load.
    	ConcurrentEndpointSyncs int32
    
    	// EndpointUpdatesBatchPeriod can be used to batch endpoint updates.
    	// All updates of endpoint triggered by pod change will be delayed by up to
    	// 'EndpointUpdatesBatchPeriod'. If other pods in the same endpoint change
    	// in that period, they will be batched to a single endpoint update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 24 09:36:53 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller.go

    		return
    	}
    
    	// queue after the max of endpointSliceChangeMinSyncDelay and
    	// endpointUpdatesBatchPeriod.
    	delay := endpointSliceChangeMinSyncDelay
    	if c.endpointUpdatesBatchPeriod > delay {
    		delay = c.endpointUpdatesBatchPeriod
    	}
    	c.serviceQueue.AddAfter(key, delay)
    }
    
    func (c *Controller) addPod(obj interface{}) {
    	pod := obj.(*v1.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/endpointcontroller.go

    	fs.DurationVar(&o.EndpointUpdatesBatchPeriod.Duration, "endpoint-updates-batch-period", o.EndpointUpdatesBatchPeriod.Duration, "The length of endpoint updates batching period. Processing of pod changes will be delayed by this duration to join them with potential upcoming updates and reduce the overall number of endpoints...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 24 09:36:53 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/config/types.go

    	// and larger endpoint slices, but larger resources.
    	MaxEndpointsPerSlice int32
    
    	// EndpointUpdatesBatchPeriod can be used to batch endpoint updates.
    	// All updates of endpoint triggered by pod change will be delayed by up to
    	// 'EndpointUpdatesBatchPeriod'. If other pods in the same endpoint change
    	// in that period, they will be batched to a single endpoint update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/endpointslicecontroller.go

    	fs.DurationVar(&o.EndpointUpdatesBatchPeriod.Duration, "endpointslice-updates-batch-period", o.EndpointUpdatesBatchPeriod.Duration, "The length of endpoint slice updates batching period. Processing of pod changes will be delayed by this duration to join them with potential upcoming updates and reduce the overall number...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/config/v1alpha1/zz_generated.conversion.go

    	out.ConcurrentServiceEndpointSyncs = in.ConcurrentServiceEndpointSyncs
    	out.MaxEndpointsPerSlice = in.MaxEndpointsPerSlice
    	out.EndpointUpdatesBatchPeriod = in.EndpointUpdatesBatchPeriod
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/config/zz_generated.deepcopy.go

    func (in *EndpointSliceControllerConfiguration) DeepCopyInto(out *EndpointSliceControllerConfiguration) {
    	*out = *in
    	out.EndpointUpdatesBatchPeriod = in.EndpointUpdatesBatchPeriod
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointSliceControllerConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/config/zz_generated.deepcopy.go

    func (in *EndpointControllerConfiguration) DeepCopyInto(out *EndpointControllerConfiguration) {
    	*out = *in
    	out.EndpointUpdatesBatchPeriod = in.EndpointUpdatesBatchPeriod
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointControllerConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    		metricsCache:          metrics.NewCache(maxEndpointsPerSubset),
    		eventRecorder:         recorder,
    	}
    
    	c.eventBroadcaster = broadcaster
    	c.eventRecorder = recorder
    
    	c.endpointUpdatesBatchPeriod = endpointUpdatesBatchPeriod
    
    	return c
    }
    
    // Controller manages selector-based service endpoint slices
    type Controller struct {
    	client           clientset.Interface
    	eventBroadcaster record.EventBroadcaster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top