LimitRangeItemPatch

data class LimitRangeItemPatch(val default: Map<String, String>? = null, val defaultRequest: Map<String, String>? = null, val max: Map<String, String>? = null, val maxLimitRequestRatio: Map<String, String>? = null, val min: Map<String, String>? = null, val type: String? = null)

LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

Constructors

Link copied to clipboard
constructor(default: Map<String, String>? = null, defaultRequest: Map<String, String>? = null, max: Map<String, String>? = null, maxLimitRequestRatio: Map<String, String>? = null, min: Map<String, String>? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val default: Map<String, String>? = null

Default resource requirement limit value by resource name if resource limit is omitted.

Link copied to clipboard

DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.

Link copied to clipboard
val max: Map<String, String>? = null

Max usage constraints on this kind by resource name.

Link copied to clipboard

MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.

Link copied to clipboard
val min: Map<String, String>? = null

Min usage constraints on this kind by resource name.

Link copied to clipboard
val type: String? = null

Type of resource that this limit applies to.