Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 96 for qos (0.19 sec)

  1. pkg/kubelet/kubelet_pods.go

    	"k8s.io/kubernetes/pkg/api/v1/resource"
    	podshelper "k8s.io/kubernetes/pkg/apis/core/pods"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/fieldpath"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/envvars"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // PodQOSClass defines the supported qos classes of Pods.
    // +enum
    type PodQOSClass string
    
    const (
    	// PodQOSGuaranteed is the Guaranteed qos class.
    	PodQOSGuaranteed PodQOSClass = "Guaranteed"
    	// PodQOSBurstable is the Burstable qos class.
    	PodQOSBurstable PodQOSClass = "Burstable"
    	// PodQOSBestEffort is the BestEffort qos class.
    	PodQOSBestEffort PodQOSClass = "BestEffort"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.11.md

    You can now bind tokens to service requests. ([ref](https://github.com/kubernetes/enhancements/issues/542))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy_test.go

    	}
    	for id, testCase := range testCases {
    		Strategy.PrepareForCreate(genericapirequest.NewContext(), testCase.pod)
    		actual := testCase.pod.Status.QOSClass
    		if actual != testCase.expected {
    			t.Errorf("[%d]: invalid qos pod %s, expected: %s, actual: %s", id, testCase.pod.Name, testCase.expected, actual)
    		}
    	}
    }
    
    func TestSchedulingGatedCondition(t *testing.T) {
    	tests := []struct {
    		name string
    		pod  *api.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.22.md

    - Introducing Memory quality of service support with `cgroups v2 (Alpha)`. The `MemoryQoS` feature is now in Alpha. This allows `kubelet` running with `cgroups v2` to set memory QoS at container, pod and QoS level to protect and guarantee better memory quality. This feature can be enabled through feature gate Memory QoS. ([#102970](https://github.com/kubernetes/kubernetes/pull/102970), [@borgerli](https://github.com/borgerli))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    )
    
    // PodQOSClass defines the supported qos classes of Pods.
    type PodQOSClass string
    
    // These are valid values for PodQOSClass
    const (
    	// PodQOSGuaranteed is the Guaranteed qos class.
    	PodQOSGuaranteed PodQOSClass = "Guaranteed"
    	// PodQOSBurstable is the Burstable qos class.
    	PodQOSBurstable PodQOSClass = "Burstable"
    	// PodQOSBestEffort is the BestEffort qos class.
    	PodQOSBestEffort PodQOSClass = "BestEffort"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

      Burstable QoS pods. For Best-Effort/Guaranteed QoS pods, swap would be disabled.
      
      Containers with memory requests equal to their memory limits also won't have
      swap access, and it is a way to opt-out of swap for a single container.
      
      The formula for the swap limit for Burstable QoS pods is:
      `(<memory-request>/<node-memory-capacity>)*<node-swap-capacity>`.
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

      # Configure the file path for host dns configuration
      flags+=" --resolv-conf=${WINDOWS_CNI_DIR}\hostdns.conf"
    
      # Both --cgroups-per-qos and --enforce-node-allocatable should be disabled on
      # windows; the latter requires the former to be enabled to work.
      flags+=" --cgroups-per-qos=false --enforce-node-allocatable="
    
      # Turn off kernel memory cgroup notification.
      flags+=" --kernel-memcg-notification=false"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.17.md

    - The topology manager aligns resources for pods of all QoS classes with respect to NUMA locality, not just Guaranteed QoS pods. ([#83492](https://github.com/kubernetes/kubernetes/pull/83492), [@ConnorDoyle](https://github.com/ConnorDoyle))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "x-kubernetes-patch-strategy": "merge"
            },
            "qosClass": {
              "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes",
              "type": "string"
            },
            "reason": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top