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- 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. - apiVersion
Optional[str]- 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
Optional[str]- description is an arbitrary string that usually provides guidelines on when this priority class should be used. - globalDefault
Optional[bool]- 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 theirglobalDefaultfield set to true, the smallest value of such global default PriorityClasses will be used as the default priority. - kind
Optional[str]- 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
Optional[meta_v1.ObjectMeta]- Standard object's metadata. More info - preemptionPolicy
Optional[str]- preemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.
PriorityClassList
class
lightkube.models.scheduling_v1.PriorityClassList(items, apiVersion=None, kind=None, metadata=None)PriorityClassList is a collection of priority classes.
parameters
- items
List[PriorityClass]- items is the list of PriorityClasses - apiVersion
Optional[str]- 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
Optional[str]- 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
Optional[meta_v1.ListMeta]- Standard list metadata More info