Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ContainerRemoved (0.36 sec)

  1. pkg/kubelet/pleg/generic.go

    		case plegContainerExited:
    			// We already reported that the container died before.
    			return []*PodLifecycleEvent{{ID: podID, Type: ContainerRemoved, Data: cid}}
    		default:
    			return []*PodLifecycleEvent{{ID: podID, Type: ContainerDied, Data: cid}, {ID: podID, Type: ContainerRemoved, Data: cid}}
    		}
    	default:
    		panic(fmt.Sprintf("unrecognized container state: %v", newState))
    	}
    }
    
    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

    }
    
    // isSyncPodWorthy filters out events that are not worthy of pod syncing
    func isSyncPodWorthy(event *pleg.PodLifecycleEvent) bool {
    	// ContainerRemoved doesn't affect pod state
    	return event.Type != pleg.ContainerRemoved
    }
    
    // PrepareDynamicResources calls the container Manager PrepareDynamicResources API
    // This method implements the RuntimeHelper interface
    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