Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for minConcurrentServiceEndpointSyncs (0.4 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. cmd/kube-controller-manager/app/options/options_test.go

    						CertFile: "",
    						KeyFile:  "",
    					},
    				},
    			},
    		},
    		{
    			name:                   "EndpointSliceControllerOptions ConcurrentServiceEndpointSyncs lower than minConcurrentServiceEndpointSyncs (1)",
    			expectErrors:           true,
    			expectedErrorSubString: "concurrent-service-endpoint-syncs must not be less than 1",
    			options: &EndpointSliceControllerOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top