Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BestEffort (0.21 sec)

  1. pkg/kubelet/cm/qos_container_manager_linux.go

    	}
    
    	// Create containers for both qos classes
    	for qosClass, containerName := range qosClasses {
    		resourceParameters := &ResourceConfig{}
    		// the BestEffort QoS class has a statically configured minShares value
    		if qosClass == v1.PodQOSBestEffort {
    			minShares := uint64(MinShares)
    			resourceParameters.CPUShares = &minShares
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/podcgroupns.go

    	// - /kubepods.slice/kubepods-burstable.slice/kubepods-burstable-pod2c48913c-b29f-11e7-9350-020968147796.slice/docker-9bca8d63d5fa610783847915bcff0ecac1273e5b4bed3f6fa1b07350e0135961.scope
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/helpers_linux_test.go

    	guaranteedMemory := memoryQuantity.Value()
    	testCases := map[string]struct {
    		pod              *v1.Pod
    		expected         *ResourceConfig
    		enforceCPULimits bool
    		quotaPeriod      uint64 // in microseconds
    	}{
    		"besteffort": {
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Resources: getResourceRequirements(getResourceList("", ""), getResourceList("", "")),
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager.go

    		notBestEffort := v1.PodQOSBestEffort != v1qos.GetPodQOS(attrs.Pod)
    		if notBestEffort {
    			return lifecycle.PodAdmitResult{Admit: true}
    		}
    
    		// When node has memory pressure, check BestEffort Pod's toleration:
    		// admit it if tolerates memory pressure taint, fail for other tolerations, e.g. DiskPressure.
    		if corev1helpers.TolerationsTolerateTaint(attrs.Pod.Spec.Tolerations, &v1.Taint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    	// If CgroupsPerQOS is enabled, this is the root of the QoS cgroup hierarchy.
    	CgroupRoot string
    	// Enable QoS based Cgroup hierarchy: top level cgroups for QoS Classes
    	// And all Burstable and BestEffort pods are brought up under their
    	// specific top level QoS cgroup.
    	CgroupsPerQOS bool
    	// driver that the kubelet uses to manipulate cgroups on the host (cgroupfs or systemd)
    	CgroupDriver string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top