Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PodInitialBackoffSeconds (1.39 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)
  3. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"podInitialBackoffSeconds": {
    						SchemaProps: spec.SchemaProps{
    							Description: "PodInitialBackoffSeconds is the initial backoff for unschedulable pods. If specified, it must be greater than 0. If this value is null, the default value (1s) will be used.",
    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