mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build linux
 | 
						|
// +build linux
 | 
						|
 | 
						|
/*
 | 
						|
Copyright 2021 The Kubernetes Authors.
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package kuberuntime
 | 
						|
 | 
						|
import (
 | 
						|
	v1 "k8s.io/api/core/v1"
 | 
						|
	"k8s.io/apimachinery/pkg/api/resource"
 | 
						|
	utilfeature "k8s.io/apiserver/pkg/util/feature"
 | 
						|
	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
 | 
						|
	"k8s.io/klog/v2"
 | 
						|
	"k8s.io/kubernetes/pkg/features"
 | 
						|
 | 
						|
	resourcehelper "k8s.io/component-helpers/resource"
 | 
						|
)
 | 
						|
 | 
						|
func (m *kubeGenericRuntimeManager) convertOverheadToLinuxResources(pod *v1.Pod) *runtimeapi.LinuxContainerResources {
 | 
						|
	resources := &runtimeapi.LinuxContainerResources{}
 | 
						|
	if pod.Spec.Overhead != nil {
 | 
						|
		cpu := pod.Spec.Overhead.Cpu()
 | 
						|
		memory := pod.Spec.Overhead.Memory()
 | 
						|
 | 
						|
		// For overhead, we do not differentiate between requests and limits. Treat this overhead
 | 
						|
		// as "guaranteed", with requests == limits
 | 
						|
		resources = m.calculateLinuxResources(cpu, cpu, memory, false)
 | 
						|
	}
 | 
						|
 | 
						|
	return resources
 | 
						|
}
 | 
						|
 | 
						|
func (m *kubeGenericRuntimeManager) calculateSandboxResources(pod *v1.Pod) *runtimeapi.LinuxContainerResources {
 | 
						|
	opts := resourcehelper.PodResourcesOptions{
 | 
						|
		ExcludeOverhead: true,
 | 
						|
		// SkipPodLevelResources is set to false when PodLevelResources feature is enabled.
 | 
						|
		SkipPodLevelResources: !utilfeature.DefaultFeatureGate.Enabled(features.PodLevelResources),
 | 
						|
	}
 | 
						|
	req := resourcehelper.PodRequests(pod, opts)
 | 
						|
	lim := resourcehelper.PodLimits(pod, opts)
 | 
						|
	var cpuRequest *resource.Quantity
 | 
						|
	if _, cpuRequestExists := req[v1.ResourceCPU]; cpuRequestExists {
 | 
						|
		cpuRequest = req.Cpu()
 | 
						|
	}
 | 
						|
 | 
						|
	// If pod has exclusive cpu the sandbox will not have cfs quote enforced
 | 
						|
	disableCPUQuota := utilfeature.DefaultFeatureGate.Enabled(features.DisableCPUQuotaWithExclusiveCPUs) && m.containerManager.PodHasExclusiveCPUs(pod)
 | 
						|
	klog.V(2).InfoS("Enforcing CFS quota", "pod", klog.KObj(pod), "unlimited", disableCPUQuota)
 | 
						|
 | 
						|
	return m.calculateLinuxResources(cpuRequest, lim.Cpu(), lim.Memory(), disableCPUQuota)
 | 
						|
}
 | 
						|
 | 
						|
func (m *kubeGenericRuntimeManager) applySandboxResources(pod *v1.Pod, config *runtimeapi.PodSandboxConfig) error {
 | 
						|
 | 
						|
	if config.Linux == nil {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
	config.Linux.Resources = m.calculateSandboxResources(pod)
 | 
						|
	config.Linux.Overhead = m.convertOverheadToLinuxResources(pod)
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |