Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for unresponsive (0.21 sec)

  1. pkg/controller/nodelifecycle/config/types.go

    	SecondaryNodeEvictionRate float32
    	// nodeStartupGracePeriod is the amount of time which we allow starting a node to
    	// be unresponsive before marking it unhealthy.
    	NodeStartupGracePeriod metav1.Duration
    	// NodeMonitorGracePeriod is the amount of time which we allow a running node to be
    	// unresponsive before marking it unhealthy. Must be N times more than kubelet's
    	// nodeStatusUpdateFrequency, where N means number of retries allowed for kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    		"Amount of time which we allow starting Node to be unresponsive before marking it unhealthy.")
    	fs.DurationVar(&o.NodeMonitorGracePeriod.Duration, "node-monitor-grace-period", o.NodeMonitorGracePeriod.Duration,
    		"Amount of time which we allow running Node to be unresponsive before marking it unhealthy. "+
    			"Must be N times more than kubelet's nodeStatusUpdateFrequency, "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. pkg/util/node/node.go

    	// on the node it is (was) running.
    	NodeUnreachablePodReason = "NodeLost"
    	// NodeUnreachablePodMessage is the message on a pod when its state cannot be confirmed as kubelet is unresponsive
    	// on the node it is (was) running.
    	NodeUnreachablePodMessage = "Node %v which was running pod %v is unresponsive"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/transport.go

    						klog.ErrorS(nil, "No valid client certificate is found and the server is responsive, exiting.", "lastCertificateAvailabilityTime", lastCertAvailable, "shutdownThreshold", exitAfter)
    						os.Exit(1)
    					} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. pkg/controller/daemon/config/types.go

    type DaemonSetControllerConfiguration struct {
    	// concurrentDaemonSetSyncs is the number of daemonset objects that are
    	// allowed to sync concurrently. Larger number = more responsive daemonset,
    	// but more CPU (and network) load.
    	ConcurrentDaemonSetSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 941 bytes
    - Viewed (0)
  6. pkg/controller/cronjob/config/types.go

    // CronJobControllerV2.
    type CronJobControllerConfiguration struct {
    	// ConcurrentCronJobSyncs is the number of cron job objects that are
    	// allowed to sync concurrently. Larger number = more responsive jobs,
    	// but more CPU (and network) load.
    	ConcurrentCronJobSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 22:32:06 UTC 2020
    - 934 bytes
    - Viewed (0)
  7. pkg/controller/replicaset/config/types.go

    type ReplicaSetControllerConfiguration struct {
    	// concurrentRSSyncs is the number of replica sets that are  allowed to sync
    	// concurrently. Larger number = more responsive replica  management, but more
    	// CPU (and network) load.
    	ConcurrentRSSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 936 bytes
    - Viewed (0)
  8. pkg/controller/replication/config/types.go

    type ReplicationControllerConfiguration struct {
    	// concurrentRCSyncs is the number of replication controllers that are
    	// allowed to sync concurrently. Larger number = more responsive replica
    	// management, but more CPU (and network) load.
    	ConcurrentRCSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 948 bytes
    - Viewed (0)
  9. pkg/controller/statefulset/config/types.go

    type StatefulSetControllerConfiguration struct {
    	// concurrentStatefulSetSyncs is the number of statefulset objects that are
    	// allowed to sync concurrently. Larger number = more responsive statefulsets,
    	// but more CPU (and network) load.
    	ConcurrentStatefulSetSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 956 bytes
    - Viewed (0)
  10. pkg/controller/resourcequota/config/types.go

    	// in the system.
    	ResourceQuotaSyncPeriod metav1.Duration
    	// concurrentResourceQuotaSyncs is the number of resource quotas that are
    	// allowed to sync concurrently. Larger number = more responsive quota
    	// management, but more CPU (and network) load.
    	ConcurrentResourceQuotaSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
Back to top