Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NodeAffinityArgs (0.13 sec)

  1. pkg/scheduler/apis/config/register.go

    		&KubeSchedulerConfiguration{},
    		&DefaultPreemptionArgs{},
    		&InterPodAffinityArgs{},
    		&NodeResourcesFitArgs{},
    		&PodTopologySpreadArgs{},
    		&VolumeBindingArgs{},
    		&NodeResourcesBalancedAllocationArgs{},
    		&NodeAffinityArgs{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 02 16:52:23 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/types_pluginargs.go

    	// +featureGate=VolumeCapacityPriority
    	// +optional
    	Shape []UtilizationShapePoint
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // NodeAffinityArgs holds arguments to configure the NodeAffinity plugin.
    type NodeAffinityArgs struct {
    	metav1.TypeMeta
    
    	// AddedAffinity is applied to all Pods additionally to the NodeAffinity
    	// specified in the PodSpec. That is, Nodes need to satisfy AddedAffinity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/testing/defaults/defaults.go

    		},
    	},
    	{
    		Name: "InterPodAffinity",
    		Args: &config.InterPodAffinityArgs{
    			HardPodAffinityWeight: 1,
    		},
    	},
    	{
    		Name: "NodeAffinity",
    		Args: &config.NodeAffinityArgs{},
    	},
    	{
    		Name: "NodeResourcesBalancedAllocation",
    		Args: &config.NodeResourcesBalancedAllocationArgs{
    			Resources: []config.ResourceSpec{{Name: "cpu", Weight: 1}, {Name: "memory", Weight: 1}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top