Update explore-intro.html

This commit is contained in:
uhziel
2021-07-04 08:54:54 +08:00
committed by GitHub
parent 84fea74349
commit ca1f9bd689
@@ -74,11 +74,11 @@ weight: 10
<div class="row">
<div class="col-md-8">
<h2>Nodes</h2>
<p>A Pod always runs on a <b>Node</b>. A Node is a worker machine in Kubernetes and may be either a virtual or a physical machine, depending on the cluster. Each Node is managed by the Control Plane. A Node can have multiple pods, and the Kubernetes Control Plane automatically handles scheduling the pods across the Nodes in the cluster. The Control Plane's automatic scheduling takes into account the available resources on each Node.</p>
<p>A Pod always runs on a <b>Node</b>. A Node is a worker machine in Kubernetes and may be either a virtual or a physical machine, depending on the cluster. Each Node is managed by the control plane. A Node can have multiple pods, and the Kubernetes control plane automatically handles scheduling the pods across the Nodes in the cluster. The control plane's automatic scheduling takes into account the available resources on each Node.</p>
<p>Every Kubernetes Node runs at least:</p>
<ul>
<li>Kubelet, a process responsible for communication between the Kubernetes Control Plane and the Node; it manages the Pods and the containers running on a machine.</li>
<li>Kubelet, a process responsible for communication between the Kubernetes control plane and the Node; it manages the Pods and the containers running on a machine.</li>
<li>A container runtime (like Docker) responsible for pulling the container image from a registry, unpacking the container, and running the application.</li>
</ul>