Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for NodeReady (0.15 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		Conditions: []v1.NodeCondition{
    			{
    				Type:               v1.NodeReady,
    				Status:             v1.ConditionTrue,
    				LastHeartbeatTime:  metav1.NewTime(fakeNow.Add(timeToPass)),
    				LastTransitionTime: fakeNow,
    			},
    		},
    	}
    	unhealthyNodeNewStatus := v1.NodeStatus{
    		Conditions: []v1.NodeCondition{
    			{
    				Type:   v1.NodeReady,
    				Status: v1.ConditionUnknown,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. pkg/kubelet/events/event.go

    	FailedToInspectImage    = "InspectFailed"
    	ErrImageNeverPullPolicy = "ErrImageNeverPull"
    	BackOffPullImage        = "BackOff"
    )
    
    // kubelet event reason list
    const (
    	NodeReady                            = "NodeReady"
    	NodeNotReady                         = "NodeNotReady"
    	NodeSchedulable                      = "NodeSchedulable"
    	NodeNotSchedulable                   = "NodeNotSchedulable"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/well_known_taints.go

    	// and removed when node becomes ready.
    	TaintNodeNotReady = "node.kubernetes.io/not-ready"
    
    	// TaintNodeUnreachable will be added when node becomes unreachable
    	// (corresponding to NodeReady status ConditionUnknown)
    	// and removed when node becomes reachable (NodeReady status ConditionTrue).
    	TaintNodeUnreachable = "node.kubernetes.io/unreachable"
    
    	// TaintNodeUnschedulable will be added when node becomes unschedulable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 16:23:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		},
    		v1.NodePIDPressure: {
    			v1.ConditionTrue: v1.TaintNodePIDPressure,
    		},
    	}
    
    	taintKeyToNodeConditionMap = map[string]v1.NodeConditionType{
    		v1.TaintNodeNotReady:           v1.NodeReady,
    		v1.TaintNodeUnreachable:        v1.NodeReady,
    		v1.TaintNodeNetworkUnavailable: v1.NodeNetworkUnavailable,
    		v1.TaintNodeMemoryPressure:     v1.NodeMemoryPressure,
    		v1.TaintNodeDiskPressure:       v1.NodeDiskPressure,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    		assert.Equal(t, v1.NodeReady, updatedNode.Status.Conditions[lastIndex].Type, "NodeReady should be the last condition")
    		assert.NotEmpty(t, updatedNode.Status.Conditions[lastIndex].Message)
    
    		updatedNode.Status.Conditions[lastIndex].Message = ""
    		expectedNode.Status.Conditions[lastIndex] = v1.NodeCondition{
    			Type:               v1.NodeReady,
    			Status:             status,
    			Reason:             reason,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. pkg/util/node/node_test.go

    					Conditions: []v1.NodeCondition{
    						{
    							Type:   v1.NodeReady,
    							Status: v1.ConditionTrue,
    						},
    					},
    				},
    			},
    			expect: true,
    		},
    		{
    			name: "case that returns false",
    			Node: &v1.Node{
    				Status: v1.NodeStatus{
    					Conditions: []v1.NodeCondition{
    						{
    							Type:   v1.NodeReady,
    							Status: v1.ConditionFalse,
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	node, err := bootstrapClient.CoreV1().Nodes().Get(context.TODO(), nodeName, metav1.GetOptions{})
    	if err != nil && !apierrors.IsNotFound(err) {
    		return errors.Wrapf(err, "cannot get Node %q", nodeName)
    	}
    	for _, cond := range node.Status.Conditions {
    		if cond.Type == v1.NodeReady && cond.Status == v1.ConditionTrue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters.go

    		// NOTE(aaronlevy): NodeReady condition needs to be the last in the list of node conditions.
    		// This is due to an issue with version skewed kubelet and master components.
    		// ref: https://github.com/kubernetes/kubernetes/issues/16961
    		currentTime := metav1.NewTime(nowFunc())
    		newNodeReadyCondition := v1.NodeCondition{
    			Type:              v1.NodeReady,
    			Status:            v1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. plugin/pkg/admission/nodetaint/admission_test.go

    		resource          = api.Resource("nodes").WithVersion("v1")
    		notReadyTaint     = api.Taint{Key: v1.TaintNodeNotReady, Effect: api.TaintEffectNoSchedule}
    		notReadyCondition = api.NodeCondition{Type: api.NodeReady, Status: api.ConditionFalse}
    		myNodeObjMeta     = metav1.ObjectMeta{Name: "mynode"}
    		myNodeObj         = api.Node{ObjectMeta: myNodeObjMeta}
    		myTaintedNodeObj  = api.Node{ObjectMeta: myNodeObjMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status.go

    		return false
    	}
    
    	readyIdx, nodeReady := nodeutil.GetNodeCondition(&node.Status, v1.NodeReady)
    	if readyIdx == -1 {
    		klog.ErrorS(nil, "Node does not have NodeReady condition", "node", node)
    		return false
    	}
    
    	if nodeReady.Status == v1.ConditionFalse {
    		return false
    	}
    
    	klog.InfoS("Fast updating node status as it just became ready")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top