Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for unresponsive (0.19 sec)

  1. 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)
  2. pkg/controller/util/node/controller_utils.go

    		taintToAdd.TimeAdded = &now
    	}
    
    	err := controller.AddOrUpdateTaintOnNode(ctx, kubeClient, node.Name, taintsToAdd...)
    	if err != nil {
    		utilruntime.HandleError(
    			fmt.Errorf(
    				"unable to taint %+v unresponsive Node %q: %v",
    				taintsToAdd,
    				node.Name,
    				err))
    		return false
    	}
    	logger.V(4).Info("Added taint to node", "taint", taintsToAdd, "node", klog.KRef("", node.Name))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    - In the "Open Project" dialogue, choose "Delete Existing Project and Import"
    - Revert the Git changes to files in the `.idea` folder
    
    NOTE: Due to the project size, the very first import can take a while and IntelliJ might become unresponsive for several seconds during this period.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent_test.go

    			_ = os.RemoveAll(dir)
    		})
    	})
    	t.Run("Unhealthy SDS socket", func(t *testing.T) {
    		dir := filepath.Dir(security.WorkloadIdentitySocketPath)
    		os.MkdirAll(dir, 0o755)
    
    		// starting an unresponsive listener on the socket
    		l, err := net.Listen("unix", security.WorkloadIdentitySocketPath)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer l.Close()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				logger.Error(nil, "Failed to instantly swap NotReadyTaint to UnreachableTaint. Will try again in the next cycle")
    			}
    		} else if nc.markNodeForTainting(node, v1.ConditionUnknown) {
    			logger.V(2).Info("Node is unresponsive. Adding it to the Taint queue", "node", klog.KObj(node), "timeStamp", decisionTimestamp)
    		}
    	case v1.ConditionTrue:
    		removed, err := nc.markNodeAsReachable(ctx, node)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	// attach detach controller will wait for a volume to be safely unmounted
    	// from its node. Once this time has expired, the controller will assume the
    	// node or kubelet are unresponsive and will detach the volume anyway.
    	ReconcilerMaxWaitForUnmountDuration time.Duration
    
    	// DesiredStateOfWorldPopulatorLoopSleepPeriod is the amount of time the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. cmd/kube-controller-manager/app/options/hpacontroller.go

    	fs.DurationVar(&o.HorizontalPodAutoscalerSyncPeriod.Duration, "horizontal-pod-autoscaler-sync-period", o.HorizontalPodAutoscalerSyncPeriod.Duration, "The period...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a
       * href="https://wicg.github.io/responsive-image-client-hints/#sec-ch-viewport-width">{@code
       * Sec-CH-Viewport-Width}</a> header field name.
       *
       * @since 32.0.0
       */
      public static final String SEC_CH_VIEWPORT_WIDTH = "Sec-CH-Viewport-Width";
      /**
       * The HTTP <a
       * href="https://wicg.github.io/responsive-image-client-hints/#sec-ch-viewport-height">{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
Back to top