Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ObservedPodOnWatch (0.12 sec)

  1. pkg/kubelet/util/pod_startup_latency_tracker.go

    	"k8s.io/utils/clock"
    )
    
    // PodStartupLatencyTracker records key moments for startup latency calculation,
    // e.g. image pulling or pod observed running on watch.
    type PodStartupLatencyTracker interface {
    	ObservedPodOnWatch(pod *v1.Pod, when time.Time)
    	RecordImageStartedPulling(podUID types.UID)
    	RecordImageFinishedPulling(podUID types.UID)
    	RecordStatusUpdated(pod *v1.Pod)
    	DeletePodStartupState(podUID types.UID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top