Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for addContainer (4.72 sec)

  1. pkg/kubelet/cm/internal_container_lifecycle.go

    	if i.cpuManager != nil {
    		i.cpuManager.AddContainer(pod, container, containerID)
    	}
    
    	if i.memoryManager != nil {
    		i.memoryManager.AddContainer(pod, container, containerID)
    	}
    
    	i.topologyManager.AddContainer(pod, container, containerID)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 06:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/fake_topology_manager.go

    	return m.policy
    }
    
    func (m *fakeManager) AddHintProvider(h HintProvider) {
    	klog.InfoS("AddHintProvider", "hintProvider", h)
    }
    
    func (m *fakeManager) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	klog.InfoS("AddContainer", "pod", klog.KObj(pod), "containerName", container.Name, "containerID", containerID)
    }
    
    func (m *fakeManager) RemoveContainer(containerID string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 18:02:07 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/scope.go

    	// AddHintProvider adds a hint provider to manager to indicate the hint provider
    	// wants to be consoluted with when making topology hints
    	AddHintProvider(h HintProvider)
    	// AddContainer adds pod to Manager for tracking
    	AddContainer(pod *v1.Pod, container *v1.Container, containerID string)
    	// RemoveContainer removes pod from Manager tracking
    	RemoveContainer(containerID string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/topology_manager.go

    	lifecycle.PodAdmitHandler
    	// AddHintProvider adds a hint provider to manager to indicate the hint provider
    	// wants to be consulted with when making topology hints
    	AddHintProvider(HintProvider)
    	// AddContainer adds pod to Manager for tracking
    	AddContainer(pod *v1.Pod, container *v1.Container, containerID string)
    	// RemoveContainer removes pod from Manager tracking
    	RemoveContainer(containerID string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/memory_manager.go

    	// AddContainer adds the mapping between container ID to pod UID and the container name
    	// The mapping used to remove the memory allocation during the container removal
    	AddContainer(p *v1.Pod, c *v1.Container, containerID string)
    
    	// Allocate is called to pre-allocate memory resources during Pod admission.
    	// This must be called at some point prior to the AddContainer() call for a container, e.g. at pod admission time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/fake_cpu_manager.go

    	klog.InfoS("Allocate", "pod", klog.KObj(pod), "containerName", container.Name)
    	return nil
    }
    
    func (m *fakeManager) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	klog.InfoS("AddContainer", "pod", klog.KObj(pod), "containerName", container.Name, "containerID", containerID)
    }
    
    func (m *fakeManager) RemoveContainer(containerID string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    				testCase.description, testCase.expAllocateErr, err)
    		}
    
    		mgr.AddContainer(pod, container, "fakeID")
    		_, _, err = mgr.containerMap.GetContainerRef("fakeID")
    		if !reflect.DeepEqual(err, testCase.expAddContainerErr) {
    			t.Errorf("CPU Manager AddContainer() error (%v). expected error: %v but got: %v",
    				testCase.description, testCase.expAddContainerErr, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/scope_test.go

    	}
    	scope := scope{}
    	scope.podMap = containermap.NewContainerMap()
    	for _, tc := range testCases {
    		pod := v1.Pod{}
    		pod.UID = tc.podUID
    		container := v1.Container{}
    		container.Name = tc.name
    		scope.AddContainer(&pod, &container, tc.containerID)
    		if val, ok := scope.podMap[tc.containerID]; ok {
    			if reflect.DeepEqual(val, pod.UID) {
    				t.Errorf("Error occurred")
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 11:44:15 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	// called at some point prior to the AddContainer() call for a container,
    	// e.g. at pod admission time.
    	Allocate(pod *v1.Pod, container *v1.Container) error
    
    	// AddContainer adds the mapping between container ID to pod UID and the container name
    	// The mapping used to remove the CPU allocation during the container removal
    	AddContainer(p *v1.Pod, c *v1.Container, containerID string)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/fake_memory_manager.go

    }
    
    func (m *fakeManager) Allocate(pod *v1.Pod, container *v1.Container) error {
    	klog.InfoS("Allocate", "pod", klog.KObj(pod), "containerName", container.Name)
    	return nil
    }
    
    func (m *fakeManager) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	klog.InfoS("Add container", "pod", klog.KObj(pod), "containerName", container.Name, "containerID", containerID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top