Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for unhealthyZoneThreshold (0.54 sec)

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

    	// WARNING: in.PodEvictionTimeout requires manual conversion: does not exist in peer-type
    	out.LargeClusterSizeThreshold = in.LargeClusterSizeThreshold
    	out.UnhealthyZoneThreshold = in.UnhealthyZoneThreshold
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    	cfg.NodeEvictionRate = o.NodeEvictionRate
    	cfg.SecondaryNodeEvictionRate = o.SecondaryNodeEvictionRate
    	cfg.LargeClusterSizeThreshold = o.LargeClusterSizeThreshold
    	cfg.UnhealthyZoneThreshold = o.UnhealthyZoneThreshold
    
    	return nil
    }
    
    // Validate checks validation of NodeLifecycleControllerOptions.
    func (o *NodeLifecycleControllerOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/config/types.go

    	LargeClusterSizeThreshold int32
    	// Zone is treated as unhealthy in nodeEvictionRate and secondaryNodeEvictionRate when at least
    	// unhealthyZoneThreshold (no less than 3) of Nodes in the zone are NotReady
    	UnhealthyZoneThreshold float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		evictionLimiterQPS:          evictionLimiterQPS,
    		secondaryEvictionLimiterQPS: secondaryEvictionLimiterQPS,
    		largeClusterThreshold:       largeClusterThreshold,
    		unhealthyZoneThreshold:      unhealthyZoneThreshold,
    		nodeUpdateQueue:             workqueue.NewTypedWithConfig(workqueue.TypedQueueConfig[string]{Name: "node_lifecycle_controller"}),
    		podUpdateQueue: workqueue.NewTypedRateLimitingQueueWithConfig(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    				NodeMonitorGracePeriod:    metav1.Duration{Duration: 30 * time.Second},
    				NodeStartupGracePeriod:    metav1.Duration{Duration: 30 * time.Second},
    				LargeClusterSizeThreshold: 100,
    				UnhealthyZoneThreshold:    0.6,
    			},
    		},
    		PersistentVolumeBinderController: &PersistentVolumeBinderControllerOptions{
    			&persistentvolumeconfig.PersistentVolumeBinderControllerConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,NodeLifecycleControllerConfiguration,UnhealthyZoneThreshold
    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,PersistentVolumeBinderControllerConfiguration,PVClaimBinderSyncPeriod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/core.go

    		controllerContext.ComponentConfig.NodeLifecycleController.LargeClusterSizeThreshold,
    		controllerContext.ComponentConfig.NodeLifecycleController.UnhealthyZoneThreshold,
    	)
    	if err != nil {
    		return nil, true, err
    	}
    	go lifecycleController.Run(ctx)
    	return nil, true, nil
    }
    
    func newTaintEvictionControllerDescriptor() *ControllerDescriptor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    }
    
    func newNodeLifecycleControllerFromClient(
    	ctx context.Context,
    	kubeClient clientset.Interface,
    	evictionLimiterQPS float32,
    	secondaryEvictionLimiterQPS float32,
    	largeClusterThreshold int32,
    	unhealthyZoneThreshold float32,
    	nodeMonitorGracePeriod time.Duration,
    	nodeStartupGracePeriod time.Duration,
    	nodeMonitorPeriod time.Duration,
    ) (*nodeLifecycleController, error) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"UnhealthyZoneThreshold": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Zone is treated as unhealthy in nodeEvictionRate and secondaryNodeEvictionRate when at least unhealthyZoneThreshold (no less than 3) of Nodes in the zone are NotReady",
    							Default:     0,
    							Type:        []string{"number"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top