Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for firstStartedPulling (0.15 sec)

  1. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		}
    		if !podState.lastFinishedPulling.Equal(podState.firstStartedPulling.Add(time.Millisecond * 100)) {
    			t.Errorf("expected pod firstStartedPulling: %s and lastFinishedPulling: %s but got firstStartedPulling: %s and lastFinishedPulling: %s",
    				podState.firstStartedPulling, podState.firstStartedPulling.Add(time.Millisecond*100), podState.firstStartedPulling, podState.lastFinishedPulling)
    		}
    
    		podStarted := buildRunningPod()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. pkg/kubelet/util/pod_startup_latency_tracker.go

    		podStartSLOduration := (podStartingDuration - imagePullingDuration).Seconds()
    
    		klog.InfoS("Observed pod startup duration",
    			"pod", klog.KObj(pod),
    			"podStartSLOduration", podStartSLOduration,
    			"podStartE2EDuration", podStartingDuration,
    			"podCreationTimestamp", pod.CreationTimestamp.Time,
    			"firstStartedPulling", state.firstStartedPulling,
    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