mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-07 09:46:53 +01:00
27 lines
602 B
Plaintext
27 lines
602 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * install/install_config/enabling-cgroup-v2
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="nodes-clusters-cgroups-2-install_{context}"]
|
|
= Enabling Linux cgroup v1 during installation
|
|
|
|
You can enable Linux control group version 1 (cgroup v1) when you install a cluster by creating installation manifests.
|
|
|
|
.Procedure
|
|
|
|
. Create or edit the `node.config` object to specify the `v1` cgroup:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: config.openshift.io/v2
|
|
kind: Node
|
|
metadata:
|
|
name: cluster
|
|
spec:
|
|
cgroupMode: "v1"
|
|
----
|
|
|
|
. Proceed with the installation as usual.
|
|
|