Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 253 for podAdd (0.17 sec)

  1. pkg/kubelet/pleg/evented.go

    			} else {
    				klog.ErrorS(err, "Evented PLEG: error generating pod status from the received event", "podUID", podID)
    			}
    		} else {
    			if klogV := klog.V(6); klogV.Enabled() {
    				klogV.InfoS("Evented PLEG: Generated pod status from the received event", "podUID", podID, "podStatus", status)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    )
    
    func TestGetContainerDevices(t *testing.T) {
    	podDevices := newPodDevices()
    	resourceName1 := "domain1.com/resource1"
    	podID := "pod1"
    	contID := "con1"
    	devices := checkpoint.DevicesPerNUMA{0: []string{"dev1"}, 1: []string{"dev1"}}
    
    	podDevices.insert(podID, contID, resourceName1,
    		devices,
    		newContainerAllocateResponse(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    		"portForward":                     {url: "/portForward/podNamespace/podID", bucket: "portForward"},
    		"portForward with uid":            {url: "/portForward/podNamespace/podID/uid", bucket: "portForward"},
    		"run":                             {url: "/run/podNamespace/podID/containerName", bucket: "run"},
    		"run with uid":                    {url: "/run/podNamespace/podID/uid/containerName", bucket: "run"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/generic.go

    	return true, nil
    }
    
    func generateEvents(podID types.UID, cid string, oldState, newState plegContainerState) []*PodLifecycleEvent {
    	if newState == oldState {
    		return nil
    	}
    
    	klog.V(4).InfoS("GenericPLEG", "podUID", podID, "containerID", cid, "oldState", oldState, "newState", newState)
    	switch newState {
    	case plegContainerRunning:
    		return []*PodLifecycleEvent{{ID: podID, Type: ContainerStarted, Data: cid}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. pkg/kubelet/status/state/state_mem.go

    }
    
    func (s *stateMemory) deleteContainer(podUID string, containerName string) {
    	delete(s.podAllocation[podUID], containerName)
    	if len(s.podAllocation[podUID]) == 0 {
    		delete(s.podAllocation, podUID)
    		delete(s.podResizeStatus, podUID)
    	}
    	klog.V(3).InfoS("Deleted pod resource allocation", "podUID", podUID, "containerName", containerName)
    }
    
    func (s *stateMemory) Delete(podUID string, containerName string) error {
    	s.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/containermap/container_map.go

    		containerName string
    	}{podUID, containerName}
    }
    
    // RemoveByContainerID removes a mapping of (containerID)->(podUID, containerName) from the ContainerMap
    func (cm ContainerMap) RemoveByContainerID(containerID string) {
    	delete(cm, containerID)
    }
    
    // RemoveByContainerRef removes a mapping of (containerID)->(podUID, containerName) from the ContainerMap
    func (cm ContainerMap) RemoveByContainerRef(podUID, containerName string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 15:25:05 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/state/state_mem.go

    	klog.InfoS("Updated CPUSet assignments", "assignments", a)
    }
    
    func (s *stateMemory) Delete(podUID string, containerName string) {
    	s.Lock()
    	defer s.Unlock()
    
    	delete(s.assignments[podUID], containerName)
    	if len(s.assignments[podUID]) == 0 {
    		delete(s.assignments, podUID)
    	}
    	klog.V(2).InfoS("Deleted CPUSet assignment", "podUID", podUID, "containerName", containerName)
    }
    
    func (s *stateMemory) ClearState() {
    	s.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/state/state_mem.go

    func (s *stateMemory) Delete(podUID string, containerName string) {
    	s.Lock()
    	defer s.Unlock()
    
    	if _, ok := s.assignments[podUID]; !ok {
    		return
    	}
    
    	delete(s.assignments[podUID], containerName)
    	if len(s.assignments[podUID]) == 0 {
    		delete(s.assignments, podUID)
    	}
    	klog.V(2).InfoS("Deleted memory assignment", "podUID", podUID, "containerName", containerName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 15 19:51:19 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/containermap/container_map_test.go

    			}
    			if podUID != tc.podUID {
    				t.Errorf("mismatched pod UID %v, %v", tc.podUID, podUID)
    			}
    			if containerName != tc.containerNames[i] {
    				t.Errorf("mismatched container Name %v, %v", tc.containerNames[i], containerName)
    			}
    		}
    
    		// Remove all entries from the containerMap, checking proper removal of
    		// each along the way.
    		cm.Visit(func(podUID string, containerName string, containerID string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 13:40:55 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/scope_test.go

    		name          string
    		containerName string
    		podUID        string
    		expected      TopologyHint
    	}{
    		{
    			name:          "case1",
    			containerName: "nginx",
    			podUID:        "0aafa4c4-38e8-11e9-bcb1-a4bf01040474",
    			expected:      TopologyHint{},
    		},
    	}
    	for _, tc := range tcases {
    		scope := scope{}
    		actual := scope.GetAffinity(tc.podUID, tc.containerName)
    		if !reflect.DeepEqual(actual, tc.expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 11:44:15 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top