Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for lastHeartbeatTime (0.22 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json

        },
        "allocatable": {
          "allocatableKey": "0"
        },
        "phase": "phaseValue",
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "lastHeartbeatTime": "2003-01-01T01:01:01Z",
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ],
        "addresses": [
          {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.yaml

      unschedulable: true
    status:
      addresses:
      - address: addressValue
        type: typeValue
      allocatable:
        allocatableKey: "0"
      capacity:
        capacityKey: "0"
      conditions:
      - lastHeartbeatTime: "2003-01-01T01:01:01Z"
        lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      config:
        active:
          configMap:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters.go

    			Type:              v1.NodeReady,
    			Status:            v1.ConditionTrue,
    			Reason:            "KubeletReady",
    			Message:           "kubelet is posting ready status",
    			LastHeartbeatTime: currentTime,
    		}
    		errs := []error{runtimeErrorsFunc(), networkErrorsFunc(), storageErrorsFunc(), nodeShutdownManagerErrorsFunc()}
    		requiredCapacities := []v1.ResourceName{v1.ResourceCPU, v1.ResourceMemory, v1.ResourcePods}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters_test.go

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

    		},
    		{
    			Name:          "only LastHeartbeatTime changed",
    			Changed:       false,
    			OldConditions: []v1.NodeCondition{{Type: v1.NodeDiskPressure, Status: v1.ConditionTrue, LastHeartbeatTime: metav1.Unix(1, 0)}},
    			NewConditions: []v1.NodeCondition{{Type: v1.NodeDiskPressure, Status: v1.ConditionTrue, LastHeartbeatTime: metav1.Unix(2, 0)}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		// A fake ready condition is created, where LastHeartbeatTime and LastTransitionTime is set
    		// to node.CreationTimestamp to avoid handle the corner case.
    		observedReadyCondition = v1.NodeCondition{
    			Type:               v1.NodeReady,
    			Status:             v1.ConditionUnknown,
    			LastHeartbeatTime:  node.CreationTimestamp,
    			LastTransitionTime: node.CreationTimestamp,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    	replacedheartbeatTime := metav1.Time{}
    	for i := range conditionsCopy {
    		originalConditionsCopy[i].LastHeartbeatTime = replacedheartbeatTime
    		conditionsCopy[i].LastHeartbeatTime = replacedheartbeatTime
    		if !apiequality.Semantic.DeepEqual(&originalConditionsCopy[i], &conditionsCopy[i]) {
    			return true
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/wrappers.go

    	n.Status.Conditions = []v1.NodeCondition{
    		{
    			Type:               typ,
    			Status:             status,
    			Message:            message,
    			Reason:             reason,
    			LastHeartbeatTime:  metav1.Time{Time: time.Now()},
    			LastTransitionTime: metav1.Time{Time: time.Now()},
    		},
    	}
    	return n
    }
    
    // PersistentVolumeClaimWrapper wraps a PersistentVolumeClaim inside.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Type = core.NodeConditionType(in.Type)
    	out.Status = core.ConditionStatus(in.Status)
    	out.LastHeartbeatTime = in.LastHeartbeatTime
    	out.LastTransitionTime = in.LastTransitionTime
    	out.Reason = in.Reason
    	out.Message = in.Message
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. pkg/apis/core/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *NodeCondition) DeepCopyInto(out *NodeCondition) {
    	*out = *in
    	in.LastHeartbeatTime.DeepCopyInto(&out.LastHeartbeatTime)
    	in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeCondition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
Back to top