PriorityClass [page]deterministic
PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.
`apiVersion: scheduling.k8s.io/v1`
`import "k8s.io/api/scheduling/v1"`
## PriorityClass {#PriorityClass}
PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.
<hr>
<table> <thead><tr><th>Field</th><th>Description</th></tr></thead> <tbody> <tr> <td><code>apiVersion</code><br/><em>string</em></td> <td>APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources</td> </tr> <tr> <td><code>description</code><br/><em>string</em></td> <td>description is an arbitrary string that usually provides guidelines on when this priority class should be used.</td> </tr> <tr> <td><code>globalDefault</code><br/><em>boolean</em></td> <td>globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.</td> </tr> <tr> <td><code>kind</code><br/><em>string</em></td> <td>Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds</td> </tr> <tr> <td><code>metadata</code><br/><em><a href="">ObjectMeta</a></em></td> <td>Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata</td> </tr> <tr> <td><code>preemptionPolicy</code><br/><em>string</em></td> <td>preemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.<br/><br/>Possible enum values:<br/> - `"Never"` means that pod never preempts other pods with lower priority.<br/> - `"PreemptLowerPriority"` means that pod can preempt other pods with lower priority.</td> </tr> <tr> <td><code>value</code><br/><em>integer</em></td> <td>value represents the integer value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.</td> </tr> </tbody> </table>
## PriorityClassList {#PriorityClassList}
PriorityClassList is a collection of priority classes.
<hr>
<table> <thead><tr><th>Field</th><th>Description</th></tr></thead> <tbody> <tr> <td><code>apiVersion</code><br/><em>string</em></td> <td>APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources</td> </tr> <tr> <td><code>items</code> <strong>*</strong><br/><em><a href="">PriorityClass array</a></em></td> <td>items is the list of PriorityClasses</td> </tr> <tr> <td><code>kind</code><br/><em>string</em></td> <td>Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds</td> </tr> <tr> <td><code>metadata</code><br/><em><a href="">ListMeta</a></em></td> <td>Standard list metadata More info: https://gi …(trimmed)