Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for LeaseDuration (0.17 sec)

  1. pkg/scheduler/apis/config/v1/defaults_test.go

    					EnableProfiling:           &enable,
    					EnableContentionProfiling: &enable,
    				},
    				LeaderElection: componentbaseconfig.LeaderElectionConfiguration{
    					LeaderElect:       ptr.To(true),
    					LeaseDuration:     metav1.Duration{Duration: 15 * time.Second},
    					RenewDeadline:     metav1.Duration{Duration: 10 * time.Second},
    					RetryPeriod:       metav1.Duration{Duration: 2 * time.Second},
    					ResourceLock:      "leases",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/options/options.go

    	if leaderelection.Changed("leader-elect") {
    		cfg.LeaderElection.LeaderElect = o.LeaderElection.LeaderElect
    	}
    	if leaderelection.Changed("leader-elect-lease-duration") {
    		cfg.LeaderElection.LeaseDuration = o.LeaderElection.LeaseDuration
    	}
    	if leaderelection.Changed("leader-elect-renew-deadline") {
    		cfg.LeaderElection.RenewDeadline = o.LeaderElection.RenewDeadline
    	}
    	if leaderelection.Changed("leader-elect-retry-period") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/server_test.go

    	if err := os.WriteFile(leaderElectionConfig, []byte(fmt.Sprintf(`
    apiVersion: kubescheduler.config.k8s.io/v1
    kind: KubeSchedulerConfiguration
    clientConnection:
      kubeconfig: '%s'
    leaderElection:
      leaseDuration: 1h
    `, configKubeconfig)), os.FileMode(0600)); err != nil {
    		t.Fatal(err)
    	}
    
    	testcases := []struct {
    		name                 string
    		flags                []string
    		registryOptions      []Option
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation_test.go

    			QPS:                10,
    			Burst:              10,
    		},
    		LeaderElection: componentbaseconfig.LeaderElectionConfiguration{
    			ResourceLock:      "leases",
    			LeaderElect:       true,
    			LeaseDuration:     metav1.Duration{Duration: 30 * time.Second},
    			RenewDeadline:     metav1.Duration{Duration: 15 * time.Second},
    			RetryPeriod:       metav1.Duration{Duration: 5 * time.Second},
    			ResourceNamespace: "name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection.go

    			LockConfig: k8sresourcelock.ResourceLockConfig{
    				Identity: l.name,
    			},
    		}
    	}
    
    	config := k8sleaderelection.LeaderElectionConfig{
    		Lock:          lock,
    		LeaseDuration: l.ttl,
    		RenewDeadline: l.ttl / 2,
    		RetryPeriod:   l.ttl / 4,
    		Callbacks:     callbacks,
    		// When Pilot exits, the lease will be dropped. This is more likely to lead to a case where
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    				ControllerStartInterval: metav1.Duration{Duration: 2 * time.Minute},
    				LeaderElection: componentbaseconfig.LeaderElectionConfiguration{
    					ResourceLock:      "configmap",
    					LeaderElect:       false,
    					LeaseDuration:     metav1.Duration{Duration: 30 * time.Second},
    					RenewDeadline:     metav1.Duration{Duration: 15 * time.Second},
    					RetryPeriod:       metav1.Duration{Duration: 5 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/controllermanager.go

    		logger.Error(err, "Error creating lock")
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    
    	leaderelection.RunOrDie(ctx, leaderelection.LeaderElectionConfig{
    		Lock:          rl,
    		LeaseDuration: c.ComponentConfig.Generic.LeaderElection.LeaseDuration.Duration,
    		RenewDeadline: c.ComponentConfig.Generic.LeaderElection.RenewDeadline.Duration,
    		RetryPeriod:   c.ComponentConfig.Generic.LeaderElection.RetryPeriod.Duration,
    		Callbacks:     callbacks,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		klet.appArmorValidator = apparmor.NewValidator()
    		klet.softAdmitHandlers.AddPodAdmitHandler(lifecycle.NewAppArmorAdmitHandler(klet.appArmorValidator))
    	}
    
    	leaseDuration := time.Duration(kubeCfg.NodeLeaseDurationSeconds) * time.Second
    	renewInterval := time.Duration(float64(leaseDuration) * nodeLeaseRenewIntervalFraction)
    	klet.nodeLeaseController = lease.NewController(
    		klet.clock,
    		klet.heartbeatClient,
    		string(klet.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top