Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for fExtenders (0.34 sec)

  1. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				nodes[i] = node
    
    				// Set nodeInfo to extenders to mock extenders' cache for preemption.
    				cachedNodeInfo := framework.NewNodeInfo()
    				cachedNodeInfo.SetNode(node)
    				cachedNodeInfoMap[node.Name] = cachedNodeInfo
    			}
    			var extenders []framework.Extender
    			for _, extender := range test.extenders {
    				// Set nodeInfoMap as extenders cached node information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/extender.go

    	SupportsPreemption() bool
    
    	// IsIgnorable returns true indicates scheduling should not fail when this extender
    	// is unavailable. This gives scheduler ability to fail fast and tolerate non-critical extenders as well.
    	// Both Filter and Bind actions are supported.
    	IsIgnorable() bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/interface.go

    	RunFilterPluginsWithNominatedPods(ctx context.Context, state *CycleState, pod *v1.Pod, info *NodeInfo) *Status
    
    	// Extenders returns registered scheduler extenders.
    	Extenders() []Extender
    
    	// Parallelizer returns a parallelizer holding parallelism for scheduler.
    	Parallelizer() parallelize.Parallelizer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    			if err := Convert_v1_KubeSchedulerProfile_To_config_KubeSchedulerProfile(&(*in)[i], &(*out)[i], s); err != nil {
    				return err
    			}
    		}
    	} else {
    		out.Profiles = nil
    	}
    	out.Extenders = *(*[]config.Extender)(unsafe.Pointer(&in.Extenders))
    	out.DelayCacheUntilActive = in.DelayCacheUntilActive
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/server.go

    		scheduler.WithPodInitialBackoffSeconds(cc.ComponentConfig.PodInitialBackoffSeconds),
    		scheduler.WithPodMaxInUnschedulablePodsDuration(cc.PodMaxInUnschedulablePodsDuration),
    		scheduler.WithExtenders(cc.ComponentConfig.Extenders...),
    		scheduler.WithParallelism(cc.ComponentConfig.Parallelism),
    		scheduler.WithBuildFrameworkCapturer(func(profile kubeschedulerconfig.KubeSchedulerProfile) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Previously, the scheduling queue didn't notice any extenders' failures, potentially resulting in missed cluster events and Pods rejected by Extenders being stuck in the unschedulable pod pool for up to 5 minutes in the worst-case scenario. Now, the scheduling queue notices extenders' failures and requeues Pods rejected by Extenders appropriately.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.26.md

    - The scheduling queue didn't notice any extenders' failures, it could miss some cluster events,
      and it could end up Pods rejected by Extenders stuck in unschedulable pod pool in 5min in the worst-case scenario.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - The scheduling queue didn't notice any extenders' failures, it could miss some cluster events,
      and it could end up Pods rejected by Extenders stuck in unschedulable pod pool in 5min in the worst-case scenario.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - The scheduling queue didn't notice any extenders' failures, it could miss some cluster events,
      and it could end up Pods rejected by Extenders stuck in unschedulable pod pool in 5min in the worst-case scenario.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							},
    						},
    					},
    					"extenders": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "set",
    							},
    						},
    						SchemaProps: spec.SchemaProps{
    							Description: "Extenders are the list of scheduler extenders, each holding the values of how to communicate with the extender. These extenders are shared by all scheduler profiles.",
    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