Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for buildContainerMapAndRunningSetFromRuntime (0.42 sec)

  1. pkg/kubelet/cm/helpers.go

    			value := evictionapi.GetThresholdQuantity(threshold.Value, &storageCapacity)
    			ret[v1.ResourceEphemeralStorage] = *value
    		}
    	}
    	return ret
    }
    
    func buildContainerMapAndRunningSetFromRuntime(ctx context.Context, runtimeService internalapi.RuntimeService) (containermap.ContainerMap, sets.Set[string]) {
    	podSandboxMap := make(map[string]string)
    	podSandboxList, _ := runtimeService.ListPodSandbox(ctx, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_windows.go

    		}
    		for rName, rCap := range cadvisor.EphemeralStorageCapacityFromFsInfo(rootfs) {
    			cm.capacity[rName] = rCap
    		}
    	}
    
    	ctx := context.Background()
    	containerMap, containerRunningSet := buildContainerMapAndRunningSetFromRuntime(ctx, runtimeService)
    
    	// Starts device manager.
    	if err := cm.deviceManager.Start(devicemanager.ActivePodsFunc(activePods), sourcesReady, containerMap, containerRunningSet); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    	podStatusProvider status.PodStatusProvider,
    	runtimeService internalapi.RuntimeService,
    	localStorageCapacityIsolation bool) error {
    	ctx := context.Background()
    
    	containerMap, containerRunningSet := buildContainerMapAndRunningSetFromRuntime(ctx, runtimeService)
    
    	// Initialize DRA manager
    	if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.DynamicResourceAllocation) {
    		err := cm.draManager.Start(dra.ActivePodsFunc(activePods), sourcesReady)
    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