Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for VolumeCapacityPriority (0.32 sec)

  1. pkg/scheduler/framework/plugins/registry.go

    		EnableDynamicResourceAllocation:              feature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation),
    		EnableVolumeCapacityPriority:                 feature.DefaultFeatureGate.Enabled(features.VolumeCapacityPriority),
    		EnableNodeInclusionPolicyInPodTopologySpread: feature.DefaultFeatureGate.Enabled(features.NodeInclusionPolicyInPodTopologySpread),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/v1/defaults.go

    	if obj.BindTimeoutSeconds == nil {
    		obj.BindTimeoutSeconds = ptr.To[int64](600)
    	}
    	if len(obj.Shape) == 0 && feature.DefaultFeatureGate.Enabled(features.VolumeCapacityPriority) {
    		obj.Shape = []configv1.UtilizationShapePoint{
    			{
    				Utilization: 0,
    				Score:       0,
    			},
    			{
    				Utilization: 100,
    				Score:       int32(config.MaxCustomPriorityScore),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types_pluginargs.go

    	// The default shape points are:
    	// 1) 0 for 0 utilization
    	// 2) 10 for 100 utilization
    	// All points must be sorted in increasing order by utilization.
    	// +featureGate=VolumeCapacityPriority
    	// +optional
    	Shape []UtilizationShapePoint
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // NodeAffinityArgs holds arguments to configure the NodeAffinity plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top