Skip to content

Commit 3d03ca0

Browse files
authored
Merge pull request #53073 from mburke5678/node-move-module
Moving modules from working with nodes to mananging nodes
2 parents c846f2c + f40a2ea commit 3d03ca0

9 files changed

+22
-22
lines changed

modules/nodes-nodes-kernel-arguments.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * nodes/nodes-nodes-working.adoc
3+
// * nodes/nodes-nodes-managing.adoc
44
// * post_installation_configuration/machine-configuration-tasks.adoc
55

66
:_content-type: PROCEDURE

modules/nodes-nodes-rtkernel-arguments.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * nodes/nodes/nodes-nodes-working.adoc
3+
// * nodes/nodes/nodes-nodes-managing.adoc
44
// * post_installation_configuration/machine-configuration-tasks.adoc
55

66
:_content-type: PROCEDURE

modules/nodes-nodes-working-master-schedulable.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Module included in the following assemblies:
22
//
3-
// * nodes/nodes-nodes-working.adoc
3+
// * nodes/nodes-nodes-managing.adoc
44

55
:_content-type: PROCEDURE
66
[id="nodes-nodes-working-master-schedulable_{context}"]

modules/nodes-nodes-working-setting-booleans.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Module included in the following assemblies:
2+
//
3+
// * nodes/nodes/nodes-nodes-managing.adoc
4+
5+
16
:_content-type: PROCEDURE
27
[id="nodes-nodes-working-setting-booleans"]
38

nodes/clusters/nodes-cluster-enabling-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ include::modules/nodes-cluster-enabling-features-about.adoc[leveloffset=+1]
1616
** xref:../../storage/container_storage_interface/persistent-storage-csi-migration.adoc#persistent-storage-csi-migration[CSI automatic migration]
1717
** xref:../../operators/operator-reference.adoc#cluster-cloud-controller-manager-operator_cluster-operators-ref[Cluster Cloud Controller Manager Operator]
1818
** xref:../../cicd/builds/build-strategies.adoc#builds-using-build-volumes_build-strategies-s2i[Source-to-image (S2I) build volumes] and xref:../../cicd/builds/build-strategies.adoc#builds-using-build-volumes_build-strategies-docker[Docker build volumes]
19-
** xref:../../nodes/nodes/nodes-nodes-working.adoc#nodes-nodes-swap-memory_nodes-nodes-working[Swap memory on nodes]
19+
** xref:../../nodes/nodes/nodes-nodes-managing.adoc#nodes-nodes-swap-memory_nodes-nodes-jobs[Swap memory on nodes]
2020
2121
include::modules/nodes-cluster-enabling-features-install.adoc[leveloffset=+1]
2222

nodes/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ through several tasks:
3434

3535
* xref:../nodes/nodes/nodes-nodes-working.adoc#nodes-nodes-working-updating_nodes-nodes-working[Add or update node labels]. A label is a key-value pair applied to a `Node` object. You can control the scheduling of pods using labels.
3636
* Change node configuration using a custom resource definition (CRD), or the `kubeletConfig` object.
37-
* Configure nodes to allow or disallow the scheduling of pods. Healthy worker nodes with a `Ready` status allow pod placement by default while the control plane nodes do not; you can change this default behavior by xref:../nodes/nodes/nodes-nodes-working.adoc#nodes-nodes-working-marking_nodes-nodes-working[configuring the worker nodes to be unschedulable] and xref:../nodes/nodes/nodes-nodes-working.adoc#nodes-nodes-working-master-schedulable_nodes-nodes-working[the control plane nodes to be schedulable].
37+
* Configure nodes to allow or disallow the scheduling of pods. Healthy worker nodes with a `Ready` status allow pod placement by default while the control plane nodes do not; you can change this default behavior by xref:../nodes/nodes/nodes-nodes-working.adoc#nodes-nodes-working-marking_nodes-nodes-working[configuring the worker nodes to be unschedulable] and xref:../nodes/nodes/nodes-nodes-working.adoc#nodes-nodes-working-marking_nodes-nodes-working[the control plane nodes to be schedulable].
3838
* xref:../nodes/nodes/nodes-nodes-resources-configuring.adoc#nodes-nodes-resources-configuring[Allocate resources for nodes] using the `system-reserved` setting. You can allow {product-title} to automatically determine the optimal `system-reserved` CPU and memory resources for your nodes, or you can manually determine and set the best resources for your nodes.
3939
* xref:../nodes/nodes/nodes-nodes-managing-max-pods.adoc#nodes-nodes-managing-max-pods-about_nodes-nodes-jobs[Configure the number of pods that can run on a node] based on the number of processor cores on the node, a hard limit, or both.
4040
* Reboot a node gracefully using xref:../nodes/nodes/nodes-nodes-rebooting.adoc#nodes-nodes-rebooting-affinity_nodes-nodes-rebooting[pod anti-affinity].
@@ -49,7 +49,7 @@ through several tasks:
4949
* Enable TLS security profiles on the node to protect communication between the kubelet and the Kubernetes API server.
5050
* xref:../nodes/jobs/nodes-pods-daemonsets.adoc#nodes-pods-daemonsets[Run background tasks on nodes automatically with daemon sets]. You can create and use daemon sets to create shared storage, run a logging pod on every node, or deploy a monitoring agent on all nodes.
5151
* xref:../nodes/nodes/nodes-nodes-garbage-collection.adoc#nodes-nodes-garbage-collection[Free node resources using garbage collection]. You can ensure that your nodes are running efficiently by removing terminated containers and the images not referenced by any running pods.
52-
* xref:../nodes/nodes/nodes-nodes-working.adoc#nodes-nodes-kernel-arguments_nodes-nodes-working[Add kernel arguments to a set of nodes].
52+
* xref:../nodes/nodes/nodes-nodes-managing.adoc#nodes-nodes-kernel-arguments_nodes-nodes-jobs[Add kernel arguments to a set of nodes].
5353
* Configure an {product-title} cluster to have worker nodes at the network edge (remote worker nodes). For information on the challenges of having remote worker nodes in an {product-title} cluster and some recommended approaches for managing pods on a remote worker node, see xref:../nodes/edge/nodes-edge-remote-workers.adoc#nodes-edge-remote-workers[Using remote worker nodes at the network edge].
5454

5555

nodes/nodes/nodes-nodes-managing.adoc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,13 @@ configuration of nodes. By creating an instance of a `KubeletConfig` object, a m
2121
// assemblies.
2222

2323
include::modules/nodes-nodes-managing-about.adoc[leveloffset=+1]
24+
include::modules/nodes-nodes-working-master-schedulable.adoc[leveloffset=+1]
25+
include::modules/nodes-nodes-working-setting-booleans.adoc[leveloffset=+1]
26+
include::modules/nodes-nodes-kernel-arguments.adoc[leveloffset=+1]
27+
ifdef::openshift-webscale[]
28+
include::modules/nodes-nodes-rtkernel-arguments.adoc[leveloffset=+1]
29+
endif::openshift-webscale[]
30+
31+
include::modules/nodes-nodes-swap-memory.adoc[leveloffset=+1]
32+
include::modules/nodes-control-plane-osp-migrating.adoc[leveloffset=+1]
33+

nodes/nodes/nodes-nodes-working.adoc

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ include::modules/nodes-nodes-working-updating.adoc[leveloffset=+1]
2020

2121
include::modules/nodes-nodes-working-marking.adoc[leveloffset=+1]
2222

23-
include::modules/nodes-nodes-working-master-schedulable.adoc[leveloffset=+1]
24-
2523
== Deleting nodes
2624

2725
include::modules/nodes-nodes-working-deleting.adoc[leveloffset=+2]
@@ -34,16 +32,3 @@ see xref:../../machine_management/manually-scaling-machineset.adoc#machineset-ma
3432

3533
include::modules/nodes-nodes-working-deleting-bare-metal.adoc[leveloffset=+2]
3634

37-
include::modules/nodes-nodes-working-setting-booleans.adoc[leveloffset=+1]
38-
include::modules/nodes-nodes-kernel-arguments.adoc[leveloffset=+1]
39-
ifdef::openshift-webscale[]
40-
include::modules/nodes-nodes-rtkernel-arguments.adoc[leveloffset=+1]
41-
endif::openshift-webscale[]
42-
43-
[role="_additional-resources"]
44-
.Additional resources
45-
46-
* For information about enabling cgroup v2 during installation, see the xref:../../installing/installing_bare_metal/installing-bare-metal.adoc#installation-configuration-parameters-optional_installing-bare-metal[Optional parameters table] in the *Installation configuration parameters* section of your installation process.
47-
48-
include::modules/nodes-nodes-swap-memory.adoc[leveloffset=+1]
49-
include::modules/nodes-control-plane-osp-migrating.adoc[leveloffset=+1]

security/container_security/security-hardening.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ include::modules/security-hardening-how.adoc[leveloffset=+1]
4141
* xref:../../installing/installing_bare_metal/installing-bare-metal.adoc#installation-user-infra-generate-k8s-manifest-ignition_installing-bare-metal[Creating the Kubernetes manifest and Ignition config files]
4242
* xref:../../installing/installing_bare_metal/installing-bare-metal.adoc#installation-user-infra-machines-iso_installing-bare-metal[Installing {op-system} by using an ISO image]
4343
* xref:../../installing/install_config/installing-customizing.adoc#installing-customizing[Customizing nodes]
44-
* xref:../../nodes/nodes/nodes-nodes-working.adoc#nodes-nodes-kernel-arguments_nodes-nodes-working[Adding kernel arguments to Nodes]
44+
* xref:../../nodes/nodes/nodes-nodes-managing.adoc#nodes-nodes-kernel-arguments_nodes-nodes-jobs[Adding kernel arguments to Nodes]
4545
ifndef::openshift-origin[]
4646
* xref:../../installing/installing_aws/installing-aws-customizations.adoc#installation-configuration-parameters_installing-aws-customizations[Installation configuration parameters] - see `fips`
4747
* xref:../../installing/installing-fips.adoc#installing-fips[Support for FIPS cryptography]

0 commit comments

Comments
 (0)