A limit range, defined by a LimitRange
object, defines compute resource constraints at the pod, container, image, image stream, and persistent volume claim level. The limit range specifies the amount of resources that a pod, container, image, image stream, or persistent volume claim can consume.
All requests to create and modify resources are evaluated against each LimitRange
object in the project. If the resource violates any of the enumerated constraints, the resource is rejected. If the resource does not set an explicit value, and if the constraint supports a default value, the default value is applied to the resource.
For CPU and memory limits, if you specify a maximum value but do not specify a minimum limit, the resource can consume more CPU and memory resources than the maximum value.
apiVersion: "v1"
kind: "LimitRange"
metadata:
name: "core-resource-limits" (1)
spec:
limits:
- type: "Pod"
max:
cpu: "2" (2)
memory: "1Gi" (3)
min:
cpu: "200m" (4)
memory: "6Mi" (5)
- type: "Container"
max:
cpu: "2" (6)
memory: "1Gi" (7)
min:
cpu: "100m" (8)
memory: "4Mi" (9)
default:
cpu: "300m" (10)
memory: "200Mi" (11)
defaultRequest:
cpu: "200m" (12)
memory: "100Mi" (13)
maxLimitRequestRatio:
cpu: "10" (14)
-
The name of the limit range object.
-
The maximum amount of CPU that a pod can request on a node across all containers.
-
The maximum amount of memory that a pod can request on a node across all containers.
-
The minimum amount of CPU that a pod can request on a node across all containers. If you do not set a
min
value or you setmin
to0
, the result is no limit and the pod can consume more than themax
CPU value. -
The minimum amount of memory that a pod can request on a node across all containers. If you do not set a
min
value or you setmin
to0
, the result is no limit and the pod can consume more than themax
memory value. -
The maximum amount of CPU that a single container in a pod can request.
-
The maximum amount of memory that a single container in a pod can request.
-
The minimum amount of CPU that a single container in a pod can request. If you do not set a
min
value or you setmin
to0
, the result is no limit and the pod can consume more than themax
CPU value. -
The minimum amount of memory that a single container in a pod can request. If you do not set a
min
value or you setmin
to0
, the result is no limit and the pod can consume more than themax
memory value. -
The default CPU limit for a container if you do not specify a limit in the pod specification.
-
The default memory limit for a container if you do not specify a limit in the pod specification.
-
The default CPU request for a container if you do not specify a request in the pod specification.
-
The default memory request for a container if you do not specify a request in the pod specification.
-
The maximum limit-to-request ratio for a container.
apiVersion: "v1"
kind: "LimitRange"
metadata:
name: "openshift-resource-limits"
spec:
limits:
- type: openshift.io/Image
max:
storage: 1Gi (1)
- type: openshift.io/ImageStream
max:
openshift.io/image-tags: 20 (2)
openshift.io/images: 30 (3)
- type: "Pod"
max:
cpu: "2" (4)
memory: "1Gi" (5)
ephemeral-storage: "1Gi" (6)
min:
cpu: "1" (7)
memory: "1Gi" (8)
-
The maximum size of an image that can be pushed to an internal registry.
-
The maximum number of unique image tags as defined in the specification for the image stream.
-
The maximum number of unique image references as defined in the specification for the image stream status.
-
The maximum amount of CPU that a pod can request on a node across all containers.
-
The maximum amount of memory that a pod can request on a node across all containers.
-
The maximum amount of ephemeral storage that a pod can request on a node across all containers.
-
The minimum amount of CPU that a pod can request on a node across all containers. See the Supported Constraints table for important information.
-
The minimum amount of memory that a pod can request on a node across all containers. If you do not set a
min
value or you setmin
to0
, the result` is no limit and the pod can consume more than themax
memory value.
You can specify both core and {product-title} resources in one limit range object.
Supported Resources:
-
CPU
-
Memory
Per container, the following must hold true if specified:
Container
Constraint | Behavior |
---|---|
|
If the configuration defines a |
|
If the configuration defines a |
|
If the limit range defines a For example, if a container has |
Supported Defaults:
Default[<resource>]
-
Defaults
container.resources.limit[<resource>]
to specified value if none. Default Requests[<resource>]
-
Defaults
container.resources.requests[<resource>]
to specified value if none.
Supported Resources:
-
CPU
-
Memory
Supported Constraints:
Across all containers in a pod, the following must hold true:
Constraint | Enforced Behavior |
---|---|
|
|
|
|
|
|
Supported Resources:
-
Storage
Resource type name:
-
openshift.io/Image
Per image, the following must hold true if specified:
Constraint | Behavior |
---|---|
|
|
Note
|
To prevent blobs that exceed the limit from being uploaded to the registry, the registry must be configured to enforce quota. The |
Supported Resources:
-
openshift.io/image-tags
-
openshift.io/images
Resource type name:
-
openshift.io/ImageStream
Per image stream, the following must hold true if specified:
Constraint | Behavior |
---|---|
|
|
|
|
The openshift.io/image-tags
resource represents unique stream limits. Possible references are an ImageStreamTag
, an ImageStreamImage
, or a DockerImage
. Tags can be created by using the oc tag
and oc import-image
commands or by using image streams. No distinction is made between internal and external references. However, each unique reference that is tagged in an image stream specification is counted just once. It does not restrict pushes to an internal container image registry in any way, but is useful for tag restriction.
The openshift.io/images
resource represents unique image names that are recorded in image stream status. It helps to restrict several images that can be pushed to the internal registry. Internal and external references are not distinguished.
Supported Resources:
-
Storage
Supported Constraints:
Across all persistent volume claims in a project, the following must hold true:
Constraint | Enforced Behavior |
---|---|
|
Min[<resource>] <= claim.spec.resources.requests[<resource>] (required) |
|
claim.spec.resources.requests[<resource>] (required) <= Max[<resource>] |
{
"apiVersion": "v1",
"kind": "LimitRange",
"metadata": {
"name": "pvcs" (1)
},
"spec": {
"limits": [{
"type": "PersistentVolumeClaim",
"min": {
"storage": "2Gi" (2)
},
"max": {
"storage": "50Gi" (3)
}
}
]
}
}
-
The name of the limit range object.
-
The minimum amount of storage that can be requested in a persistent volume claim.
-
The maximum amount of storage that can be requested in a persistent volume claim.