Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ConcurrentServiceEndpointSyncs (0.48 sec)

  1. cmd/kube-controller-manager/app/options/endpointslicecontroller.go

    	if o == nil {
    		return nil
    	}
    
    	errs := []error{}
    
    	if o.ConcurrentServiceEndpointSyncs < minConcurrentServiceEndpointSyncs {
    		errs = append(errs, fmt.Errorf("concurrent-service-endpoint-syncs must not be less than %d, but got %d", minConcurrentServiceEndpointSyncs, o.ConcurrentServiceEndpointSyncs))
    	} else if o.ConcurrentServiceEndpointSyncs > maxConcurrentServiceEndpointSyncs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/config/v1alpha1/defaults.go

    // its `SetDefaults_` method.
    func RecommendedDefaultEndpointSliceControllerConfiguration(obj *kubectrlmgrconfigv1alpha1.EndpointSliceControllerConfiguration) {
    	if obj.ConcurrentServiceEndpointSyncs == 0 {
    		obj.ConcurrentServiceEndpointSyncs = 5
    	}
    
    	if obj.MaxEndpointsPerSlice == 0 {
    		obj.MaxEndpointsPerSlice = 100
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 04:13:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/endpointslice/config/types.go

    // EndpointSliceController.
    type EndpointSliceControllerConfiguration struct {
    	// concurrentServiceEndpointSyncs is the number of service endpoint syncing
    	// operations that will be done concurrently. Larger number = faster
    	// endpoint slice updating, but more CPU (and network) load.
    	ConcurrentServiceEndpointSyncs int32
    
    	// maxEndpointsPerSlice is the maximum number of endpoints that will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/discovery.go

    		controllerContext.ComponentConfig.EndpointSliceController.EndpointUpdatesBatchPeriod.Duration,
    	).Run(ctx, int(controllerContext.ComponentConfig.EndpointSliceController.ConcurrentServiceEndpointSyncs))
    	return nil, true, nil
    }
    
    func newEndpointSliceMirroringControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.EndpointSliceMirroringController,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top