Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for unresponsive (0.16 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/deployment/config/types.go

    type DeploymentControllerConfiguration struct {
    	// concurrentDeploymentSyncs is the number of deployment objects that are
    	// allowed to sync concurrently. Larger number = more responsive deployments,
    	// but more CPU (and network) load.
    	ConcurrentDeploymentSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 12:00:53 UTC 2022
    - 949 bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/cronjobcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentCronJobSyncs, "concurrent-cron-job-syncs", o.ConcurrentCronJobSyncs, "The number of cron job objects that are allowed to sync concurrently. Larger number = more responsive jobs, but more CPU (and network) load")
    }
    
    // ApplyTo fills up JobController config with options.
    func (o *CronJobControllerOptions) ApplyTo(cfg *cronjobconfig.CronJobControllerConfiguration) error {
    	if o == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 10:28:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/jobcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentJobSyncs, "concurrent-job-syncs", o.ConcurrentJobSyncs, "The number of job objects that are allowed to sync concurrently. Larger number = more responsive jobs, but more CPU (and network) load")
    }
    
    // ApplyTo fills up JobController config with options.
    func (o *JobControllerOptions) ApplyTo(cfg *jobconfig.JobControllerConfiguration) error {
    	if o == nil {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 12:19:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/deploymentcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentDeploymentSyncs, "concurrent-deployment-syncs", o.ConcurrentDeploymentSyncs, "The number of deployment objects that are allowed to sync concurrently. Larger number = more responsive deployments, but more CPU (and network) load")
    }
    
    // ApplyTo fills up DeploymentController config with options.
    func (o *DeploymentControllerOptions) ApplyTo(cfg *deploymentconfig.DeploymentControllerConfiguration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 12:00:53 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/delegating.go

    	AllowCacheTTL time.Duration
    
    	// DenyCacheTTL is the length of time that an unsuccessful authorization response will be cached.
    	// You generally want more responsive, "deny, try again" flows.
    	DenyCacheTTL time.Duration
    
    	// WebhookRetryBackoff specifies the backoff parameters for the authorization webhook retry logic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/config/types.go

    type HPAControllerConfiguration struct {
    	// ConcurrentHorizontalPodAutoscalerSyncs is the number of HPA objects that are allowed to sync concurrently.
    	// Larger number = more responsive HPA processing, but more CPU (and network) load.
    	ConcurrentHorizontalPodAutoscalerSyncs int32
    	// horizontalPodAutoscalerSyncPeriod is the period for syncing the number of
    	// pods in horizontal pod autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top