From aa9384eb192ae06a89cb7287691a3a77f49a9550 Mon Sep 17 00:00:00 2001 From: Tim Bannister Date: Tue, 4 Jun 2019 23:27:53 +0100 Subject: [PATCH] Tweak glossary definition for Node (#14317) * Tweak glossary definition for Node The services (eg kubelet) that run on a Node are not the kind of Service that the Kubernetes API knows about. Reword accordingly. Also, highlight that Docker is one container runtime and that there are others. * Adopt suggestions from https://github.com/kubernetes/website/pull/14523 Co-Authored-By: Rael Garcia --- content/en/docs/reference/glossary/node.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/en/docs/reference/glossary/node.md b/content/en/docs/reference/glossary/node.md index e87914fa31..a67ecf488d 100755 --- a/content/en/docs/reference/glossary/node.md +++ b/content/en/docs/reference/glossary/node.md @@ -14,5 +14,4 @@ tags: -A worker machine may be a VM or physical machine, depending on the cluster. It has the {{< glossary_tooltip text="Services" term_id="service" >}} necessary to run {{< glossary_tooltip text="Pods" term_id="pod" >}} and is managed by the master components. The {{< glossary_tooltip text="Services" term_id="service" >}} on a node include Docker, kubelet and kube-proxy. - +A worker node may be a VM or physical machine, depending on the cluster. It has local daemons or services necessary to run {{< glossary_tooltip text="Pods" term_id="pod" >}} and is managed by the control plane. The daemons on a node include {{< glossary_tooltip text="kubelet" term_id="kubelet" >}}, {{< glossary_tooltip text="kube-proxy" term_id="kube-proxy" >}}, and a container runtime implementing the {{< glossary_tooltip text="CRI" term_id="cri" >}} such as {{< glossary_tooltip term_id="docker" >}}.