Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tryKillingCgroupProcesses (0.16 sec)

  1. pkg/kubelet/cm/pod_container_manager_linux.go

    	}
    	return nil
    }
    
    // Scan through the whole cgroup directory and kill all processes either
    // attached to the pod cgroup or to a container cgroup under the pod cgroup
    func (m *podContainerManagerImpl) tryKillingCgroupProcesses(podCgroup CgroupName) error {
    	pidsToKill := m.cgroupManager.Pids(podCgroup)
    	// No pids charged to the terminated pod cgroup return
    	if len(pidsToKill) == 0 {
    		return nil
    	}
    
    	var errlist []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top