Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for qos (0.29 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/apis/core/validation/validation.go

    	// so far and save the cost of a deep copy.
    	if apiequality.Semantic.DeepEqual(newPod.Spec, oldPod.Spec) {
    		return allErrs
    	}
    
    	if qos.GetPodQOS(oldPod) != qos.ComputePodQOS(newPod) {
    		allErrs = append(allErrs, field.Invalid(fldPath, newPod.Status.QOSClass, "Pod QoS is immutable"))
    	}
    
    	// handle updateable fields by munging those fields prior to deep equal comparison.
    	mungedPodSpec := *newPod.Spec.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      repeated ContainerStatus containerStatuses = 8;
    
      // 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
      // +optional
      optional string qosClass = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"qosClass":                   "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",
    	"ephemeralContainerStatuses": "Status for any ephemeral containers that have run in this pod.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top