Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 143 for PriorityClass (0.23 sec)

  1. cmd/kubelet/app/options/osflags_windows.go

    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	fs.StringVar(&f.WindowsPriorityClass, "windows-priorityclass", "NORMAL_PRIORITY_CLASS",
    		"Set the PriorityClass associated with kubelet process, the default ones are available at "+
    			"https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. pkg/registry/scheduling/rest/storage_scheduling.go

    						if err == nil || apierrors.IsAlreadyExists(err) {
    							klog.Infof("created PriorityClass %s with value %v", pc.Name, pc.Value)
    							continue
    						}
    						// ServiceUnavailble error is returned when the API server is blocked by storage version updates
    						if apierrors.IsServiceUnavailable(err) {
    							klog.Infof("going to retry, unable to create PriorityClass %s: %v", pc.Name, err)
    							return false, nil
    						}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/resourcequota.yaml

      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    								Values:    []string{"another-priorityclass-name", "cluster-services"},
    							},
    						},
    					},
    				},
    			},
    			expErr: "insufficient quota to match these scopes: [{PriorityClass In [another-priorityclass-name cluster-services]}]",
    		},
    		{
    			description: "From the above test case, just changing pod priority from cluster-services to another-priorityclass-name. expecting no error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/init_windows.go

    	"golang.org/x/sys/windows"
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/pkg/windows/service"
    )
    
    const (
    	serviceName = "kubelet"
    )
    
    // getPriorityValue returns the value associated with a Windows process priorityClass
    // Ref: https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/setpriority-method-in-class-win32-process
    func getPriorityValue(priorityClassName string) uint32 {
    	var priorityClassMap = map[string]uint32{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 01:54:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.scheduling.v1.PriorityClass": {
            "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows_386.go

    	PerJobUserTimeLimit     int64
    	LimitFlags              uint32
    	MinimumWorkingSetSize   uintptr
    	MaximumWorkingSetSize   uintptr
    	ActiveProcessLimit      uint32
    	Affinity                uintptr
    	PriorityClass           uint32
    	SchedulingClass         uint32
    	_                       uint32 // pad to 8 byte boundary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 875 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1beta1/types.go

    	// absence of a covering quota, the quota system will deny the request.
    	// For example, if an administrator wants to globally enforce that
    	// a quota must exist to create a pod with "cluster-services" priorityclass
    	// the list would include "scopeName=PriorityClass, Operator=In, Value=cluster-services"
    	// +optional
    	MatchScopes []v1.ScopedResourceSelectorRequirement `json:"matchScopes,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  9. cluster/gce/addons/admission-resource-quota-critical-pods/resource-quota.yaml

      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      hard:
        pods: "1000000000"
      scopeSelector:
        matchExpressions:
        - operator : In
          scopeName: PriorityClass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 13:52:19 UTC 2020
    - 644 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/types_windows_amd64.go

    	PerJobUserTimeLimit     int64
    	LimitFlags              uint32
    	MinimumWorkingSetSize   uintptr
    	MaximumWorkingSetSize   uintptr
    	ActiveProcessLimit      uint32
    	Affinity                uintptr
    	PriorityClass           uint32
    	SchedulingClass         uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 817 bytes
    - Viewed (0)
Back to top