ocp4 sops moved into sysadmin_guide
Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
This commit is contained in:
parent
1d17fd8610
commit
c0d6947dba
35 changed files with 1 additions and 1 deletions
|
@ -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].
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue