Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cni/pkg/nodeagent/testdata/cgroupns/1/cgroup

    0::/system.slice/docker-8445c3ca20fac1d8e74854d84a7e6a57297ffb22809098b2816b31a428f2b777.scope/kubelet.slice/kubelet-kubepods.slice/kubelet-kubepods-besteffort.slice/kubelet-kubepods-besteffort-pod863b91d4_4b68_4efa_917f_4b560e3e86aa.slice/cri-containerd-75c7fe7ad0df679971e755bd97b84dd68a32e1eba8e8f99b01ab3c07196a3e4a.scope...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 326 bytes
    - Viewed (0)
  2. pkg/kubelet/cm/pod_container_manager_linux_test.go

    		},
    		{
    			input:          NewCgroupName(qosContainersInfo.BestEffort),
    			expectedResult: false,
    			expectedUID:    types.UID(""),
    		},
    		{
    			input:          NewCgroupName(qosContainersInfo.BestEffort, GetPodCgroupNameSuffix(podUID)),
    			expectedResult: true,
    			expectedUID:    podUID,
    		},
    		{
    			input:          NewCgroupName(qosContainersInfo.BestEffort, GetPodCgroupNameSuffix(podUID), "container.scope"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 08 13:06:38 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cgroup_manager_linux_test.go

    			expected: "/Burstable.slice/Burstable-pod_123.slice",
    		},
    		{
    			input:    NewCgroupName(RootCgroupName, "BestEffort", "pod-6c1a4e95-6bb6-11e6-bc26-28d2444e470d"),
    			expected: "/BestEffort.slice/BestEffort-pod_6c1a4e95_6bb6_11e6_bc26_28d2444e470d.slice",
    		},
    		{
    			input:    NewCgroupName(RootCgroupName, "kubepods"),
    			expected: "/kubepods.slice",
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/podcgroupns_test.go

    			cgroupPaths: []string{
    				"/user.slice",
    				"/kubepods/pod2c48913c-b29f-11e7-9350-020968147796/9bca8d63d5fa610783847915bcff0ecac1273e5b4bed3f6fa1b07350e0135961",
    				"/kubepods/kubepods/besteffort/pod2c48913c-b29f-11e7-9350-020968147796/a55d9ac3b312d8a2627824b6d6dd8af66fbec439bf4e0ec22d6d9945ad337a38",
    			},
    			expectPodUID:      "",
    			expectContainerID: "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

        name: name
        ready: true
        restartCount: 6
        state:
          running:
            startedAt: '2019-07-08T09:41:59Z'
      hostIP: 10.0.0.1
      phase: Running
      podIP: 10.0.0.1
      qosClass: BestEffort
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/container_manager_linux_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestNewPodContainerManager(t *testing.T) {
    
    	info := QOSContainersInfo{
    		Guaranteed: CgroupName{"guaranteed"},
    		BestEffort: CgroupName{"besteffort"},
    		Burstable:  CgroupName{"burstable"},
    	}
    	QosEnabled := NodeConfig{
    		CgroupsPerQOS: true,
    	}
    	QosDisabled := NodeConfig{
    		CgroupsPerQOS: false,
    	}
    
    	cases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/helper/qos/qos.go

    }
    
    // ComputePodQOS evaluates the list of containers to determine a pod's QoS class. This function is more
    // expensive than GetPodQOS which should be used for pods having a non-empty .Status.QOSClass.
    // A pod is besteffort if none of its containers have specified any requests or limits.
    // A pod is guaranteed only when requests and limits are specified for all the containers and they are equal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 04:01:46 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. pkg/apis/core/helper/qos/qos.go

    }
    
    // ComputePodQOS evaluates the list of containers to determine a pod's QoS class. This function is more
    // expensive than GetPodQOS which should be used for pods having a non-empty .Status.QOSClass.
    // A pod is besteffort if none of its containers have specified any requests or limits.
    // A pod is guaranteed only when requests and limits are specified for all the containers and they are equal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 04:01:46 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. pkg/kubelet/qos/policy.go

    	// that burstable pods have a higher OOM score adjustment.
    	if int(oomScoreAdjust) < (1000 + guaranteedOOMScoreAdj) {
    		return (1000 + guaranteedOOMScoreAdj)
    	}
    	// Give burstable pods a higher chance of survival over besteffort pods.
    	if int(oomScoreAdjust) == besteffortOOMScoreAdj {
    		return int(oomScoreAdjust - 1)
    	}
    	return int(oomScoreAdjust)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/types.go

    	SetCgroupConfig(name CgroupName, resource v1.ResourceName, resourceConfig *ResourceConfig) error
    }
    
    // QOSContainersInfo stores the names of containers per qos
    type QOSContainersInfo struct {
    	Guaranteed CgroupName
    	BestEffort CgroupName
    	Burstable  CgroupName
    }
    
    // PodContainerManager stores and manages pod level containers
    // The Pod workers interact with the PodContainerManager to create and destroy
    // containers for the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top