mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 21:46:22 +01:00
28 lines
785 B
Plaintext
28 lines
785 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 namespace object to add the following annotation:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
annotations:
|
|
quota.openshift.io/cluster-resource-override-enabled: "false" <1>
|
|
# ...
|
|
----
|
|
<1> Setting this annotation to `false` disables overcommit for this namespace.
|