Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for unresponsive (0.22 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.2.md

    restarting the daemon alleviates this issue, but hasn’t been verified to
    completely eliminate the IP allocation issue. More information [here](https://github.com/kubernetes/kubernetes/issues/21523#issuecomment-191498969)
      * Daemon becomes unresponsive (rarely) due to kernel deadlocks. More information [here](https://github.com/kubernetes/kubernetes/issues/21866#issuecomment-189492391)
    
    ### Provider-specific Notes
    
    #### Various
    
       Core changes:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    * Pods that are terminating due to eviction by the nodecontroller (typically due to unresponsive kubelet, or network partition) now surface in `kubectl get` output  ([#36017](https://github.com/kubernetes/kubernetes/pull/36017), [@foxish](https://github.com/foxish))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top