ocp4 sops moved into sysadmin_guide

Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
This commit is contained in:
David Kirwan 2024-07-22 10:37:01 +01:00
parent 1d17fd8610
commit c0d6947dba
No known key found for this signature in database
GPG key ID: A5893AB6474AC37D
35 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,26 @@
= Configure the tenant ResourceQuota
== Resources
- [1] ResourceQuota Openshift Docs: https://docs.openshift.com/container-platform/4.11/applications/quotas/quotas-setting-per-project.html
=== 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].