sigs.k8s.io/kueue@v0.6.2/config/components/crd/bases/kueue.x-k8s.io_workloadpriorityclasses.yaml (about) 1 --- 2 apiVersion: apiextensions.k8s.io/v1 3 kind: CustomResourceDefinition 4 metadata: 5 annotations: 6 controller-gen.kubebuilder.io/version: v0.14.0 7 name: workloadpriorityclasses.kueue.x-k8s.io 8 spec: 9 group: kueue.x-k8s.io 10 names: 11 kind: WorkloadPriorityClass 12 listKind: WorkloadPriorityClassList 13 plural: workloadpriorityclasses 14 singular: workloadpriorityclass 15 scope: Cluster 16 versions: 17 - additionalPrinterColumns: 18 - description: Value of workloadPriorityClass's Priority 19 jsonPath: .value 20 name: Value 21 type: integer 22 name: v1beta1 23 schema: 24 openAPIV3Schema: 25 description: WorkloadPriorityClass is the Schema for the workloadPriorityClass 26 API 27 properties: 28 apiVersion: 29 description: |- 30 APIVersion defines the versioned schema of this representation of an object. 31 Servers should convert recognized schemas to the latest internal value, and 32 may reject unrecognized values. 33 More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources 34 type: string 35 description: 36 description: |- 37 description is an arbitrary string that usually provides guidelines on 38 when this workloadPriorityClass should be used. 39 type: string 40 kind: 41 description: |- 42 Kind is a string value representing the REST resource this object represents. 43 Servers may infer this from the endpoint the client submits requests to. 44 Cannot be updated. 45 In CamelCase. 46 More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds 47 type: string 48 metadata: 49 type: object 50 value: 51 description: |- 52 value represents the integer value of this workloadPriorityClass. This is the actual priority that workloads 53 receive when jobs have the name of this class in their workloadPriorityClass label. 54 Changing the value of workloadPriorityClass doesn't affect the priority of workloads that were already created. 55 format: int32 56 type: integer 57 required: 58 - value 59 type: object 60 served: true 61 storage: true 62 subresources: {}