Generically refer to container runtimes. (#9601)
* Generically refer to container runtimes. Update nodes.md to refer to "container runtimes" instead of identifying Docker specifically. * Update nodes.md link for Container Runtime to be relative to the domain. * Update nodes.md
This commit is contained in:
committed by
k8s-ci-robot
parent
4d8c488a3b
commit
f7ae911a78
@@ -12,7 +12,7 @@ weight: 10
|
|||||||
A `node` is a worker machine in Kubernetes, previously known as a `minion`. A node
|
A `node` is a worker machine in Kubernetes, previously known as a `minion`. A node
|
||||||
may be a VM or physical machine, depending on the cluster. Each node has
|
may be a VM or physical machine, depending on the cluster. Each node has
|
||||||
the services necessary to run [pods](/docs/concepts/workloads/pods/pod/) and is managed by the master
|
the services necessary to run [pods](/docs/concepts/workloads/pods/pod/) and is managed by the master
|
||||||
components. The services on a node include Docker, kubelet and kube-proxy. See
|
components. The services on a node include the [container runtime](/docs/concepts/overview/components/#node-components), kubelet and kube-proxy. See
|
||||||
[The Kubernetes Node](https://git.k8s.io/community/contributors/design-proposals/architecture/architecture.md#the-kubernetes-node) section in the
|
[The Kubernetes Node](https://git.k8s.io/community/contributors/design-proposals/architecture/architecture.md#the-kubernetes-node) section in the
|
||||||
architecture design doc for more details.
|
architecture design doc for more details.
|
||||||
|
|
||||||
@@ -254,8 +254,7 @@ capacity when adding a node.
|
|||||||
|
|
||||||
The Kubernetes scheduler ensures that there are enough resources for all the pods on a node. It
|
The Kubernetes scheduler ensures that there are enough resources for all the pods on a node. It
|
||||||
checks that the sum of the requests of containers on the node is no greater than the node capacity. It
|
checks that the sum of the requests of containers on the node is no greater than the node capacity. It
|
||||||
includes all containers started by the kubelet, but not containers started directly by Docker nor
|
includes all containers started by the kubelet, but not containers started directly by the [container runtime](/docs/concepts/overview/components/#node-components) nor any process running outside of the containers.
|
||||||
processes not in containers.
|
|
||||||
|
|
||||||
If you want to explicitly reserve resources for non-pod processes, you can create a placeholder
|
If you want to explicitly reserve resources for non-pod processes, you can create a placeholder
|
||||||
pod. Use the following template:
|
pod. Use the following template:
|
||||||
|
|||||||
Reference in New Issue
Block a user