Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for renewDeadline (0.19 sec)

  1. operator/cmd/operator/server.go

    	if !leaderElectionEnabled {
    		log.Warn("Leader election namespace not set. Leader election is disabled. NOT APPROPRIATE FOR PRODUCTION USE!")
    	}
    
    	// renewDeadline cannot be greater than leaseDuration
    	renewDeadline := getRenewDeadline()
    	leaseDuration := time.Duration(renewDeadline.Nanoseconds() * 2)
    
    	// Get a config to talk to the apiserver
    	cfg, err := config.GetConfig()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/v1/defaults_test.go

    				},
    				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",
    					ResourceNamespace: "kube-system",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/interface.go

    // Timeout set for a client used to contact to Kubernetes should be lower than
    // RenewDeadline to keep a single hung request from forcing a leader loss.
    // Setting it to max(time.Second, RenewDeadline/2) as a reasonable heuristic.
    // nolint: lll
    func NewFromKubeconfig(lockType string, ns string, name string, rlc ResourceLockConfig, kubeconfig *restclient.Config, renewDeadline time.Duration) (Interface, error) {
    	// shallow copy, do not modify the kubeconfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    func NewLeaderElector(lec LeaderElectionConfig) (*LeaderElector, error) {
    	if lec.LeaseDuration <= lec.RenewDeadline {
    		return nil, fmt.Errorf("leaseDuration must be greater than renewDeadline")
    	}
    	if lec.RenewDeadline <= time.Duration(JitterFactor*float64(lec.RetryPeriod)) {
    		return nil, fmt.Errorf("renewDeadline must be greater than retryPeriod*JitterFactor")
    	}
    	if lec.LeaseDuration < 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/options/options.go

    			EventRecorder: recorder,
    		},
    		kubeConfig,
    		config.RenewDeadline.Duration)
    	if err != nil {
    		return nil, fmt.Errorf("couldn't create resource lock: %v", err)
    	}
    
    	return &leaderelection.LeaderElectionConfig{
    		Lock:            rl,
    		LeaseDuration:   config.LeaseDuration.Duration,
    		RenewDeadline:   config.RenewDeadline.Duration,
    		RetryPeriod:     config.RetryPeriod.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/options/options_test.go

    					EnableContentionProfiling: true,
    				},
    				LeaderElection: componentbaseconfig.LeaderElectionConfiguration{
    					LeaderElect:       true,
    					LeaseDuration:     metav1.Duration{Duration: 15 * time.Second},
    					RenewDeadline:     metav1.Duration{Duration: 10 * time.Second},
    					RetryPeriod:       metav1.Duration{Duration: 2 * time.Second},
    					ResourceLock:      "leases",
    					ResourceNamespace: "kube-system",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  7. cmd/kube-scheduler/app/server_test.go

    				LeaderElect:       false,                                    // from CLI args
    				LeaseDuration:     metav1.Duration{Duration: 2 * time.Hour}, // from CLI args
    				RenewDeadline:     metav1.Duration{Duration: 10 * time.Second},
    				RetryPeriod:       metav1.Duration{Duration: 2 * time.Second},
    				ResourceLock:      "leases",
    				ResourceName:      configv1.SchedulerDefaultLockObjectName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/scheme/scheme_test.go

    clientConnection:
      acceptContentTypes: ""
      burst: 0
      contentType: ""
      kubeconfig: ""
      qps: 0
    kind: KubeSchedulerConfiguration
    leaderElection:
      leaderElect: null
      leaseDuration: 0s
      renewDeadline: 0s
      resourceLock: ""
      resourceName: ""
      resourceNamespace: ""
      retryPeriod: 0s
    profiles:
    - pluginConfig:
      - args:
          apiVersion: kubescheduler.config.k8s.io/v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/validation/validation_test.go

    		},
    		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",
    			ResourceName:      "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)
  10. cmd/kube-controller-manager/app/controllermanager.go

    		c.Kubeconfig,
    		c.ComponentConfig.Generic.LeaderElection.RenewDeadline.Duration)
    	if err != nil {
    		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,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top