Configure the tenant ResourceQuota

Resources

Config

The ResourceQuota is contained within the tenants namespace and is named like communishift-project-name-quota.

By default the following quota is assigned:

spec:
  hard:
    cpu: "1" # requests.cpu
    memory: "1Gi" # requests.memory
    limits.cpu: "1"
    limits.memory: "2Gi"
    requests.storage: "5Gi"
    persistentvolumeclaims: "1"
    pods: "2"
    replicationcontrollers: 1

This object can be modified in order to increase or restrict resources available to tenants after the fact. Refer to the official docs for instructions [1].