Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PodInitialBackoffSeconds (1.51 sec)

  1. pkg/scheduler/scheduler.go

    		o.frameworkOutOfTreeRegistry = registry
    	}
    }
    
    // WithPodInitialBackoffSeconds sets podInitialBackoffSeconds for Scheduler, the default value is 1
    func WithPodInitialBackoffSeconds(podInitialBackoffSeconds int64) Option {
    	return func(o *schedulerOptions) {
    		o.podInitialBackoffSeconds = podInitialBackoffSeconds
    	}
    }
    
    // WithPodMaxBackoffSeconds sets podMaxBackoffSeconds for Scheduler, the default value is 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/server.go

    		scheduler.WithFrameworkOutOfTreeRegistry(outOfTreeRegistry),
    		scheduler.WithPodMaxBackoffSeconds(cc.ComponentConfig.PodMaxBackoffSeconds),
    		scheduler.WithPodInitialBackoffSeconds(cc.ComponentConfig.PodInitialBackoffSeconds),
    		scheduler.WithPodMaxInUnschedulablePodsDuration(cc.PodMaxInUnschedulablePodsDuration),
    		scheduler.WithExtenders(cc.ComponentConfig.Extenders...),
    		scheduler.WithParallelism(cc.ComponentConfig.Parallelism),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top