Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ContainerDied (0.21 sec)

  1. pkg/kubelet/pleg/generic.go

    				klog.ErrorS(nil, "Event channel is full, discard this relist() cycle event")
    			}
    			// Log exit code of containers when they finished in a particular event
    			if events[i].Type == ContainerDied {
    				// Fill up containerExitCode map for ContainerDied event when first time appeared
    				if len(containerExitCode) == 0 && pod != nil && g.cache != nil {
    					// Get updated podStatus
    					status, err := g.cache.Get(pod.ID)
    					if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    			} else {
    				// If the pod no longer exists, ignore the event.
    				klog.V(4).InfoS("SyncLoop (PLEG): pod does not exist, ignore irrelevant event", "event", e)
    			}
    		}
    
    		if e.Type == pleg.ContainerDied {
    			if containerID, ok := e.Data.(string); ok {
    				kl.cleanUpContainersInPod(e.ID, containerID)
    			}
    		}
    	case <-syncCh:
    		// Sync pods waiting for sync
    		podsToSync := kl.getPodsToSync()
    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