Quotas and Limit Ranges

Overview

Using quotas and limit ranges, cluster administrators can set constraints to limit the number of objects or amount of compute resources that are used in your project. This helps cluster administrators better manage and allocate resources across all projects, and ensure that no projects are using more than is appropriate for the cluster size.

As a developer, you can also set requests and limits on compute resources at the pod and container level.

The following sections help you understand how to check on your quota and limit range settings, what sorts of things they can constrain, and how you can request or limit compute resources in your own pods and containers.

Quotas

A resource quota, defined by a **ResourceQuota** object, provides constraints that limit aggregate resource consumption per project. It can limit the quantity of objects that can be created in a project by type, as well as the total amount of compute resources and storage that may be consumed by resources in that project.

Quotas are set by cluster administrators and are scoped to a given project.

Viewing Quotas

You can view usage statistics related to any hard limits defined in a project’s quota by navigating in the web console to the project’s Quota page.

You can also use the CLI to view quota details:

  1. First, get the list of quotas defined in the project. For example, for a project called demoproject:

    1. $ oc get quota -n demoproject
    2. NAME AGE
    3. besteffort 11m
    4. compute-resources 2m
    5. core-object-counts 29m
  2. Then, describe the quota you are interested in, for example the core-object-counts quota:

    1. $ oc describe quota core-object-counts -n demoproject
    2. Name: core-object-counts
    3. Namespace: demoproject
    4. Resource Used Hard
    5. -------- ---- ----
    6. configmaps 3 10
    7. persistentvolumeclaims 0 4
    8. replicationcontrollers 3 20
    9. secrets 9 10
    10. services 2 10

Full quota definitions can be viewed by running oc get --export on the object. The following show some sample quota definitions:

core-object-counts.yaml

  1. apiVersion: v1
  2. kind: ResourceQuota
  3. metadata:
  4. name: core-object-counts
  5. spec:
  6. hard:
  7. configmaps: "10" (1)
  8. persistentvolumeclaims: "4" (2)
  9. replicationcontrollers: "20" (3)
  10. secrets: "10" (4)
  11. services: "10" (5)
1The total number of ConfigMap objects that can exist in the project.
2The total number of persistent volume claims (PVCs) that can exist in the project.
3The total number of replication controllers that can exist in the project.
4The total number of secrets that can exist in the project.
5The total number of services that can exist in the project.

openshift-object-counts.yaml

  1. apiVersion: v1
  2. kind: ResourceQuota
  3. metadata:
  4. name: openshift-object-counts
  5. spec:
  6. hard:
  7. openshift.io/imagestreams: "10" (1)
1The total number of image streams that can exist in the project.

compute-resources.yaml

  1. apiVersion: v1
  2. kind: ResourceQuota
  3. metadata:
  4. name: compute-resources
  5. spec:
  6. hard:
  7. pods: "4" (1)
  8. requests.cpu: "1" (2)
  9. requests.memory: 1Gi (3)
  10. requests.ephemeral-storage: 2Gi (4)
  11. limits.cpu: "2" (5)
  12. limits.memory: 2Gi (6)
  13. limits.ephemeral-storage: 4Gi (7)
1The total number of pods in a non-terminal state that can exist in the project.
2Across all pods in a non-terminal state, the sum of CPU requests cannot exceed 1 core.
3Across all pods in a non-terminal state, the sum of memory requests cannot exceed 1Gi.
4Across all pods in a non-terminal state, the sum of ephemeral storage requests cannot exceed 2Gi.
5Across all pods in a non-terminal state, the sum of CPU limits cannot exceed 2 cores.
6Across all pods in a non-terminal state, the sum of memory limits cannot exceed 2Gi.
7Across all pods in a non-terminal state, the sum of ephemeral storage limits cannot exceed 4Gi.

besteffort.yaml

  1. apiVersion: v1
  2. kind: ResourceQuota
  3. metadata:
  4. name: besteffort
  5. spec:
  6. hard:
  7. pods: "1" (1)
  8. scopes:
  9. - BestEffort (2)
1The total number of pods in a non-terminal state with BestEffort quality of service that can exist in the project.
2Restricts the quota to only matching pods that have BestEffort quality of service for either memory or CPU.

compute-resources-long-running.yaml

  1. apiVersion: v1
  2. kind: ResourceQuota
  3. metadata:
  4. name: compute-resources-long-running
  5. spec:
  6. hard:
  7. pods: "4" (1)
  8. limits.cpu: "4" (2)
  9. limits.memory: "2Gi" (3)
  10. limits.ephemeral-storage: "4Gi" (4)
  11. scopes:
  12. - NotTerminating (5)
1The total number of pods in a non-terminal state.
2Across all pods in a non-terminal state, the sum of CPU limits cannot exceed this value.
3Across all pods in a non-terminal state, the sum of memory limits cannot exceed this value.
4Across all pods in a non-terminal state, the sum of ephemeral storage limits cannot exceed this value.
5Restricts the quota to only matching pods where spec.activeDeadlineSeconds is set to nil. Build pods will fall under NotTerminating unless the RestartNever policy is applied.

compute-resources-time-bound.yaml

  1. apiVersion: v1
  2. kind: ResourceQuota
  3. metadata:
  4. name: compute-resources-time-bound
  5. spec:
  6. hard:
  7. pods: "2" (1)
  8. limits.cpu: "1" (2)
  9. limits.memory: "1Gi" (3)
  10. limits.ephemeral-storage: "1Gi" (4)
  11. scopes:
  12. - Terminating (5)
1The total number of pods in a non-terminal state.
2Across all pods in a non-terminal state, the sum of CPU limits cannot exceed this value.
3Across all pods in a non-terminal state, the sum of memory limits cannot exceed this value.
4Across all pods in a non-terminal state, the sum of ephemeral storage limits cannot exceed this value.
5Restricts the quota to only matching pods where spec.activeDeadlineSeconds >=0. For example, this quota would charge for build or deployer pods, but not long running pods like a web server or database.

storage-consumption.yaml

  1. apiVersion: v1
  2. kind: ResourceQuota
  3. metadata:
  4. name: storage-consumption
  5. spec:
  6. hard:
  7. persistentvolumeclaims: "10" (1)
  8. requests.storage: "50Gi" (2)
  9. gold.storageclass.storage.k8s.io/requests.storage: "10Gi" (3)
  10. silver.storageclass.storage.k8s.io/requests.storage: "20Gi" (4)
  11. silver.storageclass.storage.k8s.io/persistentvolumeclaims: "5" (5)
  12. bronze.storageclass.storage.k8s.io/requests.storage: "0" (6)
  13. bronze.storageclass.storage.k8s.io/persistentvolumeclaims: "0" (7)
1The total number of persistent volume claims in a project
2Across all persistent volume claims in a project, the sum of storage requested cannot exceed this value.
3Across all persistent volume claims in a project, the sum of storage requested in the gold storage class cannot exceed this value.
4Across all persistent volume claims in a project, the sum of storage requested in the silver storage class cannot exceed this value.
5Across all persistent volume claims in a project, the total number of claims in the silver storage class cannot exceed this value.
6Across all persistent volume claims in a project, the sum of storage requested in the bronze storage class cannot exceed this value. When this is set to 0, it means bronze storage class cannot request storage.
7Across all persistent volume claims in a project, the sum of storage requested in the bronze storage class cannot exceed this value. When this is set to 0, it means bronze storage class cannot create claims.

Resources Managed by Quota

The following describes the set of compute resources and object types that may be managed by a quota.

A pod is in a terminal state if status.phase in (Failed, Succeeded) is true.

Table 1. Compute Resources Managed by Quota
Resource NameDescription

cpu

The sum of CPU requests across all pods in a non-terminal state cannot exceed this value. cpu and requests.cpu are the same value and can be used interchangeably.

memory

The sum of memory requests across all pods in a non-terminal state cannot exceed this value. memory and requests.memory are the same value and can be used interchangeably.

ephemeral-storage

The sum of local ephemeral storage requests across all pods in a non-terminal state cannot exceed this value. ephemeral-storage and requests.ephemeral-storage are the same value and can be used interchangeably. This resource is available only if you enabled the ephemeral storage technology preview. This feature is disabled by default.

requests.cpu

The sum of CPU requests across all pods in a non-terminal state cannot exceed this value. cpu and requests.cpu are the same value and can be used interchangeably.

requests.memory

The sum of memory requests across all pods in a non-terminal state cannot exceed this value. memory and requests.memory are the same value and can be used interchangeably.

requests.ephemeral-storage

The sum of ephemeral storage requests across all pods in a non-terminal state cannot exceed this value. ephemeral-storage and requests.ephemeral-storage are the same value and can be used interchangeably. This resource is available only if you enabled the ephemeral storage technology preview. This feature is disabled by default.

limits.cpu

The sum of CPU limits across all pods in a non-terminal state cannot exceed this value.

limits.memory

The sum of memory limits across all pods in a non-terminal state cannot exceed this value.

limits.ephemeral-storage

The sum of ephemeral storage limits across all pods in a non-terminal state cannot exceed this value. This resource is available only if you enabled the ephemeral storage technology preview. This feature is disabled by default.

Table 2. Storage Resources Managed by Quota
Resource NameDescription

requests.storage

The sum of storage requests across all persistent volume claims in any state cannot exceed this value.

persistentvolumeclaims

The total number of persistent volume claims that can exist in the project.

<storage-class-name>.storageclass.storage.k8s.io/requests.storage

The sum of storage requests across all persistent volume claims in any state that have a matching storage class, cannot exceed this value.

<storage-class-name>.storageclass.storage.k8s.io/persistentvolumeclaims

The total number of persistent volume claims with a matching storage class that can exist in the project.

Table 3. Object Counts Managed by Quota
Resource NameDescription

pods

The total number of pods in a non-terminal state that can exist in the project.

replicationcontrollers

The total number of replication controllers that can exist in the project.

resourcequotas

The total number of resource quotas that can exist in the project.

services

The total number of services that can exist in the project.

secrets

The total number of secrets that can exist in the project.

configmaps

The total number of ConfigMap objects that can exist in the project.

persistentvolumeclaims

The total number of persistent volume claims that can exist in the project.

openshift.io/imagestreams

The total number of image streams that can exist in the project.

Quota Scopes

Each quota can have an associated set of scopes. A quota will only measure usage for a resource if it matches the intersection of enumerated scopes.

Adding a scope to a quota restricts the set of resources to which that quota can apply. Specifying a resource outside of the allowed set results in a validation error.

ScopeDescription

Terminating

Match pods where spec.activeDeadlineSeconds >= 0.

NotTerminating

Match pods where spec.activeDeadlineSeconds is nil.

BestEffort

Match pods that have best effort quality of service for either cpu or memory. See the Quality of Service Classes for more on committing compute resources.

NotBestEffort

Match pods that do not have best effort quality of service for cpu and memory.

A BestEffort scope restricts a quota to limiting the following resources:

  • **pods**

A Terminating, NotTerminating, and NotBestEffort scope restricts a quota to tracking the following resources:

  • **pods**

  • **memory**

  • **requests.memory**

  • **limits.memory**

  • **cpu**

  • **requests.cpu**

  • **limits.cpu**

  • **ephemeral-storage**

  • **requests.ephemeral-storage**

  • **limits.ephemeral-storage**

Ephemeral storage requests and limits apply only if you enabled the ephemeral storage technology preview. This feature is disabled by default.

Quota Enforcement

After a resource quota for a project is first created, the project restricts the ability to create any new resources that may violate a quota constraint until it has calculated updated usage statistics.

After a quota is created and usage statistics are updated, the project accepts the creation of new content. When you create or modify resources, your quota usage is incremented immediately upon the request to create or modify the resource.

When you delete a resource, your quota use is decremented during the next full recalculation of quota statistics for the project. If project modifications exceed a quota usage limit, the server denies the action. An appropriate error message is returned explaining the quota constraint violated, and what your currently observed usage stats are in the system.

Requests Versus Limits

When allocating compute resources, each container may specify a request and a limit value each for CPU, memory, and ephemeral storage. Quotas can restrict any of these values.

If the quota has a value specified for **requests.cpu** or **requests.memory**, then it requires that every incoming container make an explicit request for those resources. If the quota has a value specified for **limits.cpu** or **limits.memory**, then it requires that every incoming container specify an explicit limit for those resources.

See Compute Resources for more on setting requests and limits in pods and containers.

Limit Ranges

A limit range, defined by a **LimitRange** object, enumerates compute resource constraints in a project at the pod, container, image, image stream, and persistent volume claim level, and specifies the amount of resources that a pod, container, image, image stream, or persistent volume claim can consume.

All resource create and modification requests are evaluated against each **LimitRange** object in the project. If the resource violates any of the enumerated constraints, then the resource is rejected. If the resource does not set an explicit value, and if the constraint supports a default value, then the default value is applied to the resource.

For CPU and Memory limits, if you specify a max value, but do not specify a min limit, the resource can consume CPU/memory resources greater than max value`.

You can specify limits and requests for ephemeral storage by using the ephemeral storage technology preview. This feature is disabled by default. To enable this feature, see configuring for ephemeral storage.

Limit ranges are set by cluster administrators and are scoped to a given project.

Viewing Limit Ranges

You can view any limit ranges defined in a project by navigating in the web console to the project’s Quota page.

You can also use the CLI to view limit range details:

  1. First, get the list of limit ranges defined in the project. For example, for a project called demoproject:

    1. $ oc get limits -n demoproject
    2. NAME AGE
    3. resource-limits 6d
  2. Then, describe the limit range you are interested in, for example the resource-limits limit range:

    1. $ oc describe limits resource-limits -n demoproject
    2. Name: resource-limits
    3. Namespace: demoproject
    4. Type Resource Min Max Default Request Default Limit Max Limit/Request Ratio
    5. ---- -------- --- --- --------------- ------------- -----------------------
    6. Pod cpu 200m 2 - - -
    7. Pod memory 6Mi 1Gi - - -
    8. Container cpu 100m 2 200m 300m 10
    9. Container memory 4Mi 1Gi 100Mi 200Mi -
    10. openshift.io/Image storage - 1Gi - - -
    11. openshift.io/ImageStream openshift.io/image - 12 - - -
    12. openshift.io/ImageStream openshift.io/image-tags - 10 - - -

Full limit range definitions can be viewed by running oc get --export on the object. The following shows an example limit range definition:

Core Limit Range Object Definition

  1. apiVersion: "v1"
  2. kind: "LimitRange"
  3. metadata:
  4. name: "core-resource-limits" (1)
  5. spec:
  6. limits:
  7. - type: "Pod"
  8. max:
  9. cpu: "2" (2)
  10. memory: "1Gi" (3)
  11. min:
  12. cpu: "200m" (4)
  13. memory: "6Mi" (5)
  14. - type: "Container"
  15. max:
  16. cpu: "2" (6)
  17. memory: "1Gi" (7)
  18. min:
  19. cpu: "100m" (8)
  20. memory: "4Mi" (9)
  21. default:
  22. cpu: "300m" (10)
  23. memory: "200Mi" (11)
  24. defaultRequest:
  25. cpu: "200m" (12)
  26. memory: "100Mi" (13)
  27. maxLimitRequestRatio:
  28. cpu: "10" (14)
1The name of the limit range object.
2The maximum amount of CPU that a pod can request on a node across all containers.
3The maximum amount of memory that a pod can request on a node across all containers.
4The minimum amount of CPU that a pod can request on a node across all containers. Not setting a min value or setting 0 is unlimited allowing the pod to consume more than the max value.
5The minimum amount of memory that a pod can request on a node across all containers. Not setting a min value or setting 0 is unlimited allowing the pod to consume more than the max value.
6The maximum amount of CPU that a single container in a pod can request.
7The maximum amount of memory that a single container in a pod can request.
8The minimum amount of CPU that a single container in a pod can request. Not setting a min value or setting 0 is unlimited allowing the pod to consume more than the max value.
9The minimum amount of memory that a single container in a pod can request. Not setting a min value or setting 0 is unlimited allowing the pod to consume more than the max value.
10The default amount of CPU that a container will be limited to use if not specified.
11The default amount of memory that a container will be limited to use if not specified.
12The default amount of CPU that a container will request to use if not specified.
13The default amount of memory that a container will request to use if not specified.
14The maximum amount of CPU burst that a container can make as a ratio of its limit over request.

For more information on how CPU and memory are measured, see Compute Resources.

Container Limits

Supported Resources:

  • CPU

  • Memory

Supported Constraints:

Per container, the following must hold true if specified:

Table 4. Container
ConstraintBehavior

Min

Min[resource] less than or equal to container.resources.requests[resource] (required) less than or equal to container/resources.limits[resource] (optional)

If the configuration defines a min CPU, then the request value must be greater than the CPU value. Not setting a min value or setting 0 is unlimited allowing the pod to consume more than the max value.

Max

container.resources.limits[resource] (required) less than or equal to Max[resource]

If the configuration defines a max CPU, then you do not need to define a request value, but a limit value does need to be set that satisfies the maximum CPU constraint.

MaxLimitRequestRatio

MaxLimitRequestRatio[resource] less than or equal to ( container.resources.limits[resource] / container.resources.requests[resource])

If a configuration defines a maxLimitRequestRatio value, then any new containers must have both a request and limit value. Additionally, OKD calculates a limit to request ratio by dividing the limit by the request. This value should be a non-negative integer greater than 1.

For example, if a container has cpu: 500 in the limit value, and cpu: 100 in the request value, then its limit to request ratio for cpu is 5. This ratio must be less than or equal to the maxLimitRequestRatio.

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.

Pod Limits

Supported Resources:

  • CPU

  • Memory

Supported Constraints:

Across all containers in a pod, the following must hold true:

Table 5. Pod
ConstraintEnforced Behavior

Min

Min[resource] less than or equal to container.resources.requests[resource] (required) less than or equal to container.resources.limits[resource]. Not setting a min value or setting 0 is unlimited allowing the pod to consume more than the max value.

Max

container.resources.limits[resource] (required) less than or equal to Max[resource].

MaxLimitRequestRatio

MaxLimitRequestRatio[resource] less than or equal to ( container.resources.limits[resource] / container.resources.requests[resource]).

Compute Resources

Each container running on a node consumes compute resources, which are measurable quantities that can be requested, allocated, and consumed.

When authoring a pod configuration file, you can optionally specify how much CPU, memory (RAM), and local ephemeral storage (if your administrator enabled the ephemeral storage technology preview) each container needs in order to better schedule pods in the cluster and ensure satisfactory performance.

CPU is measured in units called millicores. Each node in a cluster inspects the operating system to determine the amount of CPU cores on the node, then multiplies that value by 1000 to express its total capacity. For example, if a node has 2 cores, the node’s CPU capacity would be represented as 2000m. If you wanted to use 1/10 of a single core, it would be represented as 100m.

Memory and ephemeral storage are measured in bytes. In addition, it may be used with SI suffixes (E, P, T, G, M, K) or their power-of-two-equivalents (Ei, Pi, Ti, Gi, Mi, Ki).

  1. apiVersion: v1
  2. kind: Pod
  3. spec:
  4. containers:
  5. - image: openshift/hello-openshift
  6. name: hello-openshift
  7. resources:
  8. requests:
  9. cpu: 100m (1)
  10. memory: 200Mi (2)
  11. ephemeral-storage: 1Gi (3)
  12. limits:
  13. cpu: 200m (4)
  14. memory: 400Mi (5)
  15. ephemeral-storage: 2Gi (6)
1The container requests 100m CPU.
2The container requests 200Mi memory.
3The container requests 1Gi ephemeral storage. Your administrator must enable the ephemeral storage technology preview to specify this parameter value.
4The container limits 200m CPU.
5The container limits 400Mi memory.
6The container limits 2Gi ephemeral storage. Your administrator must enable the ephemeral storage technology preview to specify this parameter value.

CPU Requests

Each container in a pod can specify the amount of CPU it requests on a node. The scheduler uses CPU requests to find a node with an appropriate fit for a container.

The CPU request represents a minimum amount of CPU that your container may consume, but if there is no contention for CPU, it can use all available CPU on the node. If there is CPU contention on the node, CPU requests provide a relative weight across all containers on the system for how much CPU time the container may use.

On the node, CPU requests map to Kernel CFS shares to enforce this behavior.

Viewing Compute Resources

To view compute resources for a pod:

  1. $ oc describe pod ruby-hello-world-tfjxt
  2. Name: ruby-hello-world-tfjxt
  3. Namespace: default
  4. Image(s): ruby-hello-world
  5. Node: /
  6. Labels: run=ruby-hello-world
  7. Status: Pending
  8. Reason:
  9. Message:
  10. IP:
  11. Replication Controllers: ruby-hello-world (1/1 replicas created)
  12. Containers:
  13. ruby-hello-world:
  14. Container ID:
  15. Image ID:
  16. Image: ruby-hello-world
  17. QoS Tier:
  18. cpu: Burstable
  19. memory: Burstable
  20. Limits:
  21. cpu: 200m
  22. memory: 400Mi
  23. ephemeral-storage: 1Gi
  24. Requests:
  25. cpu: 100m
  26. memory: 200Mi
  27. ephemeral-storage: 2Gi
  28. State: Waiting
  29. Ready: False
  30. Restart Count: 0
  31. Environment Variables:

CPU Limits

Each container in a pod can specify the amount of CPU it is limited to use on a node. CPU limits control the maximum amount of CPU that your container may use independent of contention on the node. If a container attempts to exceed the specified limit, the system will throttle the container. This allows the container to have a consistent level of service independent of the number of pods scheduled to the node.

Memory Requests

By default, a container is able to consume as much memory on the node as possible. In order to improve placement of pods in the cluster, specify the amount of memory required for a container to run. The scheduler will then take available node memory capacity into account prior to binding your pod to a node. A container is still able to consume as much memory on the node as possible even when specifying a request.

Ephemeral Storage Requests

This topic applies only if your administrator enabled the ephemeral storage technology preview.

By default, a container is able to consume as much local ephemeral storage on the node as is available. In order to improve placement of pods in the cluster, specify the amount of required local ephemeral storage for a container to run. The scheduler will then take available node local storage capacity into account prior to binding your pod to a node. A container is still able to consume as much local ephemeral storage on the node as possible even when specifying a request.

Memory Limits

If you specify a memory limit, you can constrain the amount of memory the container can use. For example, if you specify a limit of 200Mi, a container will be limited to using that amount of memory on the node. If the container exceeds the specified memory limit, it will be terminated and potentially restarted dependent upon the container restart policy.

Ephemeral Storage Limits

This topic applies only if your administrator enabled the ephemeral storage technology preview.

If you specify an ephemeral storage limit, you can constrain the amount of ephemeral storage the container can use. For example, if you specify a limit of 2Gi, a container will be limited to using that amount of ephemeral storage on the node. If the container exceeds the specified memory limit, it will be terminated and potentially restarted dependent upon the container restart policy.

Quality of Service Tiers

When created, a compute resource is classified with a quality of service (QoS). There are three tiers, and each is based on the request and limit value specified for each resource:

Quality of ServiceDescription

BestEffort

Provided when a request and limit are not specified.

Burstable

Provided when a request is specified that is less than an optionally specified limit.

Guaranteed

Provided when a limit is specified that is equal to an optionally specified request.

If a container has requests and limits set that would result in a different quality of service for each compute resource, it will be classified as Burstable.

The quality of service has different impacts on different resources, depending on whether the resource is compressible or not. CPU is a compressible resource, whereas memory is an incompressible resource.

With CPU Resources:

  • A BestEffort CPU container is able to consume as much CPU as is available on a node but runs with the lowest priority.

  • A Burstable CPU container is guaranteed to get the minimum amount of CPU requested, but it may or may not get additional CPU time. Excess CPU resources are distributed based on the amount requested across all containers on the node.

  • A Guaranteed CPU container is guaranteed to get the amount requested and no more, even if there are additional CPU cycles available. This provides a consistent level of performance independent of other activity on the node.

With Memory Resources:

  • A BestEffort memory container is able to consume as much memory as is available on the node, but there are no guarantees that the scheduler will place that container on a node with enough memory to meet its needs. In addition, a BestEffort container has the greatest chance of being killed if there is an out of memory event on the node.

  • A Burstable memory container is scheduled on the node to get the amount of memory requested, but it may consume more. If there is an out of memory event on the node, Burstable containers are killed after BestEffort containers when attempting to recover memory.

  • A Guaranteed memory container gets the amount of memory requested, but no more. In the event of an out of memory event, it will only be killed if there are no more BestEffort or Burstable containers on the system.

Specifying Compute Resources via CLI

To specify compute resources via the CLI:

  1. $ oc run ruby-hello-world --image=ruby-hello-world --limits=cpu=200m,memory=400Mi --requests=cpu=100m,memory=200Mi

Ephemeral storage applies only if your administrator enabled the ephemeral storage technology preview.

Project Resource Limits

Resource limits can be set per-project by cluster administrators. Developers do not have the ability to create, edit, or delete these limits, but can view them for projects they have access to.