Priority Class Args
data class PriorityClassArgs(val apiVersion: Output<String>? = null, val description: Output<String>? = null, val globalDefault: Output<Boolean>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val preemptionPolicy: Output<String>? = null, val value: Output<Int>) : ConvertibleToJava<PriorityClassArgs>
PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.
Constructors
Link copied to clipboard
fun PriorityClassArgs(apiVersion: Output<String>? = null, description: Output<String>? = null, globalDefault: Output<Boolean>? = null, kind: Output<String>? = null, metadata: Output<ObjectMetaArgs>? = null, preemptionPolicy: Output<String>? = null, value: Output<Int>)
Functions
Properties
Link copied to clipboard
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.