Resource Quota Definition: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * OpenShift Concepts =Overview= =Example= <pre> { "apiVersion": "v1", "kind": "ResourceQuota", "metadata": { "na...")
 
No edit summary
Line 1: Line 1:
=External=
* https://docs.openshift.com/container-platform/latest/rest_api/api/v1.ResourceQuota.html
=Internal=
=Internal=



Revision as of 21:46, 31 January 2018

External

Internal

Overview

Example

{
  "apiVersion": "v1",
  "kind": "ResourceQuota",
  "metadata": {
    "name": "quota" 
  },
  "spec": {
    "hard": {
      "memory": "1Gi", 
      "cpu": "20", 
      "pods": "10", 
      "services": "5", 
      "replicationcontrollers":"5", 
      "resourcequotas":"1" 
    }
  }
}