Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for NodeLeaseDurationSeconds (0.61 sec)

  1. pkg/kubelet/apis/config/types.go

    	// only used when node lease feature is enabled.
    	NodeStatusReportFrequency metav1.Duration
    	// nodeLeaseDurationSeconds is the duration the Kubelet will set on its corresponding Lease.
    	NodeLeaseDurationSeconds int32
    	// ImageMinimumGCAge is the minimum age for an unused image before it is
    	// garbage collected.
    	ImageMinimumGCAge metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		// The timeout is the minimum of the lease duration and status update frequency
    		leaseTimeout := time.Duration(s.KubeletConfiguration.NodeLeaseDurationSeconds) * time.Second
    		if heartbeatClientConfig.Timeout > leaseTimeout {
    			heartbeatClientConfig.Timeout = leaseTimeout
    		}
    
    		heartbeatClientConfig.QPS = float32(-1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	}
    
    	leaseDuration := time.Duration(kubeCfg.NodeLeaseDurationSeconds) * time.Second
    	renewInterval := time.Duration(float64(leaseDuration) * nodeLeaseRenewIntervalFraction)
    	klet.nodeLeaseController = lease.NewController(
    		klet.clock,
    		klet.heartbeatClient,
    		string(klet.nodeName),
    		kubeCfg.NodeLeaseDurationSeconds,
    		klet.onRepeatedHeartbeatFailure,
    		renewInterval,
    		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)
  4. CHANGELOG/CHANGELOG-1.12.md

    - PodReadinessGate...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
    						},
    					},
    					"nodeLeaseDurationSeconds": {
    						SchemaProps: spec.SchemaProps{
    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