Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SyncResults (0.25 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			}
    			containerResults <- killContainerResult
    		}(container)
    	}
    	wg.Wait()
    	close(containerResults)
    
    	for containerResult := range containerResults {
    		syncResults = append(syncResults, containerResult)
    	}
    	return
    }
    
    // pruneInitContainersBeforeStart ensures that before we begin creating init
    // containers, we have reduced the number of outstanding init containers still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	kl.reasonCache.Update(pod.UID, result)
    	if err := result.Error(); err != nil {
    		// Do not return error if the only failures were pods in backoff
    		for _, r := range result.SyncResults {
    			if r.Error != kubecontainer.ErrCrashLoopBackOff && r.Error != images.ErrImagePullBackOff {
    				// Do not record an event here, as we keep all event logging for sync pod failures
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top