Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ContainerMap (0.12 sec)

  1. pkg/kubelet/cm/devicemanager/manager.go

    	pendingAdmissionPod *v1.Pod
    
    	// containerMap provides a mapping from (pod, container) -> containerID
    	// for all containers in a pod. Used to detect pods running across a restart
    	containerMap containermap.ContainerMap
    
    	// containerRunningSet identifies which container among those present in `containerMap`
    	// was reported running by the container runtime when `containerMap` was computed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    	err := cm.cpuManager.Start(cpumanager.ActivePodsFunc(activePods), sourcesReady, podStatusProvider, runtimeService, containerMap)
    	if err != nil {
    		return fmt.Errorf("start cpu manager error: %v", err)
    	}
    
    	// Initialize memory manager
    	if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.MemoryManager) {
    		containerMap, _ := buildContainerMapAndRunningSetFromRuntime(ctx, runtimeService)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top