Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Programmed (0.13 sec)

  1. pkg/kubelet/kubelet.go

    				continue
    			}
    			// Syncing a mirror pod is a programmer error since the intent of sync is to
    			// batch notify all pending work. We should make it impossible to double sync,
    			// but for now log a programmer error to prevent accidental introduction.
    			klog.V(3).InfoS("Programmer error, HandlePodSyncs does not expect to receive mirror pods", "podUID", pod.UID, "mirrorPodUID", mirrorPod.UID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    		isStatic := kubetypes.IsStaticPod(desiredPod)
    		pod, mirrorPod, wasMirror := kl.podManager.GetPodAndMirrorPod(desiredPod)
    		if pod == nil || wasMirror {
    			klog.V(2).InfoS("Programmer error, restartable pod was a mirror pod but activePods should never contain a mirror pod", "podUID", desiredPod.UID)
    			continue
    		}
    		kl.podWorkers.UpdatePod(UpdatePodOptions{
    			UpdateType: kubetypes.SyncPodCreate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top