mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
32 lines
731 B
Plaintext
32 lines
731 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * nodes/nodes-cluster-overcommit.adoc
|
|
// * post_installation_configuration/node-tasks.adoc
|
|
|
|
:_content-type: PROCEDURE
|
|
[id="nodes-cluster-overcommit-project-disable_{context}"]
|
|
= Disabling overcommitment for a project
|
|
|
|
When enabled, overcommitment can be disabled per-project.
|
|
For example, you can allow infrastructure components to be configured independently of overcommitment.
|
|
|
|
.Procedure
|
|
|
|
To disable overcommitment in a project:
|
|
|
|
. Edit the project object file
|
|
|
|
. Add the following annotation:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
quota.openshift.io/cluster-resource-override-enabled: "false"
|
|
----
|
|
|
|
. Create the project object:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ oc create -f <file-name>.yaml
|
|
----
|