Skip to content

Commit 410ffa0

Browse files
authored
Merge pull request #48841 from Amrita42/commonterms-node
Common terms for Nodes
2 parents 11ecefe + 430cb44 commit 410ffa0

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

nodes/index.adoc

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,3 +129,79 @@ As an administrator, You can perform various tasks on a Linux container, such as
129129
{product-title} provides specialized containers called xref:../nodes/containers/nodes-containers-init.adoc#nodes-containers-init[Init containers]. Init containers run before application containers and can contain utilities or setup scripts not present in an application image. You can use an Init container to perform tasks before the rest of a pod is deployed.
130130

131131
Apart from performing specific tasks on nodes, pods, and containers, you can work with the overall {product-title} cluster to keep the cluster efficient and the application pods highly available.
132+
133+
[id="commonterms-node"]
134+
== Common terms
135+
136+
This glossary defines common terms that are used in the _node_ content. These terms help you understand _nodes_ effectively.
137+
138+
[discrete]
139+
[id="commonterms-node-container"]
140+
Container::
141+
It is a lightweight and executable image that comprises software and all its dependencies. Containers virtualize the operating system, as a result, you can run containers anywhere from a data center to a public or private cloud to even a developer's laptop.
142+
143+
[discrete]
144+
[id="commonterms-node-daemonset"]
145+
Daemon set::
146+
Ensures that a replica of the pod runs on eligible nodes in an {product-title} cluster.
147+
148+
[discrete]
149+
[id="commonterms-node-egress"]
150+
egress::
151+
The process of data sharing externally through a network’s outbound traffic from a pod.
152+
153+
[discrete]
154+
[id="commonterms-node-gc"]
155+
garbage collection::
156+
The process of cleaning up cluster resources, such as terminated containers and images that are not referenced by any running pods.
157+
158+
[discrete]
159+
[id="commonterms-node-hpa"]
160+
Horizontal Pod Autoscaler(HPA)::
161+
Implemented as a Kubernetes API resource and a controller. You can use the HPA to specify the minimum and maximum number of pods that you want to run. You can also specify the CPU or memory utilization that your pods should target. The HPA scales out and scales in pods when a given CPU or memory threshold is crossed.
162+
163+
[discrete]
164+
[id="commonterms-node-ingress"]
165+
Ingress::
166+
Incoming traffic to a pod.
167+
168+
[discrete]
169+
[id="commonterms-node-job"]
170+
Job::
171+
A process that runs to completion. A job creates one or more pod objects and ensures that the specified pods are successfully completed.
172+
173+
[discrete]
174+
[id="commonterms-node-label"]
175+
Labels::
176+
You can use labels, which are key-value pairs, to organise and select subsets of objects, such as a pod.
177+
178+
[discrete]
179+
[id="commonterms-node-nodenew"]
180+
Node::
181+
A worker machine in the {product-title} cluster. A node can be either be a virtual machine (VM) or a physical machine.
182+
183+
[discrete]
184+
[id="commonterms-node-tuningop"]
185+
Node Tuning Operator::
186+
You can use the Node Tuning Operator to manage node-level tuning by using the TuneD daemon. It ensures custom tuning specifications are passed to all containerized TuneD daemons running in the cluster in the format that the daemons understand. The daemons run on all nodes in the cluster, one per node.
187+
188+
[discrete]
189+
[id="commonterms-node-self-remediationop"]
190+
Self Node Remediation Operator::
191+
The Operator runs on the cluster nodes and identifies and reboots nodes that are unhealthy.
192+
193+
[discrete]
194+
[id="commonterms-node-podnew"]
195+
Pod::
196+
One or more containers with shared resources, such as volume and IP addresses, running in your {product-title} cluster.
197+
A pod is the smallest compute unit defined, deployed, and managed.
198+
199+
[discrete]
200+
[id="commonterms-node-toleration"]
201+
Toleration::
202+
Indicates that the pod is allowed (but not required) to be scheduled on nodes or node groups with matching taints. You can use tolerations to enable the scheduler to schedule pods with matching taints.
203+
204+
[discrete]
205+
[id="commonterms-node-taint"]
206+
Taint::
207+
A core object that comprises a key,value, and effect. Taints and tolerations work together to ensure that pods are not scheduled on irrelevant nodes.

0 commit comments

Comments
 (0)