scheduling_v1
PriorityClass
class
lightkube.models.scheduling_v1.PriorityClass
(value, apiVersion=None, description=None, globalDefault=None, kind=None, metadata=None, preemptionPolicy=None)PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.
parameters
- value
int
- The 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. - apiVersion
str
- (optional) 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 - description
str
- (optional) description is an arbitrary string that usually provides guidelines on when this priority class should be used. - globalDefault
bool
- (optional) 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 asglobalDefault
. However, if more than one PriorityClasses exists with theirglobalDefault
field set to true, the smallest value of such global default PriorityClasses will be used as the default priority. - kind
str
- (optional) 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 - metadata
meta_v1.ObjectMeta
- (optional) Standard object's metadata. More info - preemptionPolicy
str
- (optional) PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is beta-level, gated by the NonPreemptingPriority feature-gate.
PriorityClassList
class
lightkube.models.scheduling_v1.PriorityClassList
(items, apiVersion=None, kind=None, metadata=None)PriorityClassList is a collection of priority classes.
parameters
- items
PriorityClass
- items is the list of PriorityClasses - apiVersion
str
- (optional) 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 - kind
str
- (optional) 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 - metadata
meta_v1.ListMeta
- (optional) Standard list metadata More info