Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 121 for PriorityClass (0.19 sec)

  1. pkg/apis/scheduling/v1alpha1/zz_generated.defaults.go

    	scheme.AddTypeDefaultingFunc(&v1alpha1.PriorityClass{}, func(obj interface{}) { SetObjectDefaults_PriorityClass(obj.(*v1alpha1.PriorityClass)) })
    	scheme.AddTypeDefaultingFunc(&v1alpha1.PriorityClassList{}, func(obj interface{}) { SetObjectDefaults_PriorityClassList(obj.(*v1alpha1.PriorityClassList)) })
    	return nil
    }
    
    func SetObjectDefaults_PriorityClass(in *v1alpha1.PriorityClass) {
    	SetDefaults_PriorityClass(in)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. pkg/apis/scheduling/types.go

    	SystemNodeCritical = SystemPriorityClassPrefix + "node-critical"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PriorityClass defines the mapping from a priority class name to the priority
    // integer value. The value can be any valid integer.
    type PriorityClass struct {
    	metav1.TypeMeta
    	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. pkg/apis/scheduling/v1beta1/zz_generated.defaults.go

    	scheme.AddTypeDefaultingFunc(&v1beta1.PriorityClass{}, func(obj interface{}) { SetObjectDefaults_PriorityClass(obj.(*v1beta1.PriorityClass)) })
    	scheme.AddTypeDefaultingFunc(&v1beta1.PriorityClassList{}, func(obj interface{}) { SetObjectDefaults_PriorityClassList(obj.(*v1beta1.PriorityClassList)) })
    	return nil
    }
    
    func SetObjectDefaults_PriorityClass(in *v1beta1.PriorityClass) {
    	SetDefaults_PriorityClass(in)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/scheduling/v1beta1/zz_generated.prerelease-lifecycle.go

    func (in *PriorityClass) APILifecycleDeprecated() (major, minor int) {
    	return 1, 14
    }
    
    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *PriorityClass) APILifecycleReplacement() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top