Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for NodeReady (0.5 sec)

  1. pkg/kubelet/nodestatus/setters_test.go

    		return &v1.NodeCondition{
    			Type:               v1.NodeReady,
    			Status:             v1.ConditionTrue,
    			Reason:             "KubeletReady",
    			Message:            message,
    			LastTransitionTime: metav1.NewTime(transition),
    			LastHeartbeatTime:  metav1.NewTime(heartbeat),
    		}
    	}
    	return &v1.NodeCondition{
    		Type:               v1.NodeReady,
    		Status:             v1.ConditionFalse,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller.go

    	}
    	return endpointSlice
    }
    
    // isNodeReady returns true if a node is ready; false otherwise.
    func isNodeReady(node *v1.Node) bool {
    	for _, c := range node.Status.Conditions {
    		if c.Type == v1.NodeReady {
    			return c.Status == v1.ConditionTrue
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    				Status: api.NodeStatus{Conditions: []api.NodeCondition{
    					{Type: api.NodeReady, Status: api.ConditionTrue},
    					{Type: api.NodeReady, Status: api.ConditionTrue}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo3", "Ready", "<none>", "<unknown>", ""}}},
    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo4"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller_test.go

    				}
    				if nodeInfo.ready != nil {
    					status := v1.ConditionFalse
    					if *nodeInfo.ready {
    						status = v1.ConditionTrue
    					}
    					node.Status.Conditions = []v1.NodeCondition{{
    						Type:   v1.NodeReady,
    						Status: status,
    					}}
    				}
    				if nodeInfo.cpu != nil {
    					node.Status.Allocatable = v1.ResourceList{
    						v1.ResourceCPU: *nodeInfo.cpu,
    					}
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  5. pkg/controller/podgc/gc_controller_test.go

    					Spec: v1.NodeSpec{
    						Taints: node.taints,
    					},
    					Status: v1.NodeStatus{
    						Conditions: []v1.NodeCondition{
    							{
    								Type:   v1.NodeReady,
    								Status: node.readyCondition,
    							},
    						},
    					},
    				})
    			}
    			pods := make([]*v1.Pod, 0, len(test.pods))
    			for _, pod := range test.pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	nodeName1 := k8stypes.NodeName("worker-0")
    	node1 := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: string(nodeName1)},
    		Status: v1.NodeStatus{
    			Conditions: []v1.NodeCondition{
    				{
    					Type:   v1.NodeReady,
    					Status: v1.ConditionTrue,
    				},
    			},
    		},
    	}
    	informerFactory.Core().V1().Nodes().Informer().GetStore().Add(node1)
    	dsw.AddNode(nodeName1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers_test.go

    		item   v1.NodeConditionType
    		result bool
    	}{
    		"has-condition": {
    			inputs: []v1.NodeConditionType{v1.NodeReady, v1.NodeDiskPressure, v1.NodeMemoryPressure},
    			item:   v1.NodeMemoryPressure,
    			result: true,
    		},
    		"does-not-have-condition": {
    			inputs: []v1.NodeConditionType{v1.NodeReady, v1.NodeDiskPressure},
    			item:   v1.NodeMemoryPressure,
    			result: false,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    // These are valid but not exhaustive conditions of node. A cloud provider may set a condition not listed here.
    // Relevant events contain "NodeReady", "NodeNotReady", "NodeSchedulable", and "NodeNotSchedulable".
    const (
    	// NodeReady means kubelet is healthy and ready to accept pods.
    	NodeReady NodeConditionType = "Ready"
    	// NodeMemoryPressure means the kubelet is under pressure due to insufficient available memory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    		nodes: []*v1.Node{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: string(kubelet.nodeName),
    				},
    				Status: v1.NodeStatus{
    					Conditions: []v1.NodeCondition{
    						{
    							Type:    v1.NodeReady,
    							Status:  v1.ConditionTrue,
    							Reason:  "Ready",
    							Message: "Node ready",
    						},
    					},
    					Addresses: []v1.NodeAddress{
    						{
    							Type:    v1.NodeInternalIP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	conditionMap := make(map[api.NodeConditionType]*api.NodeCondition)
    	NodeAllConditions := []api.NodeConditionType{api.NodeReady}
    	for i := range obj.Status.Conditions {
    		cond := obj.Status.Conditions[i]
    		conditionMap[cond.Type] = &cond
    	}
    	var status []string
    	for _, validCondition := range NodeAllConditions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top