From ddf231b1add1a47e6acf91e6ab261a3690a7ec55 Mon Sep 17 00:00:00 2001 From: "Sahdev P. Zala" Date: Tue, 5 Dec 2017 14:56:35 -0500 Subject: [PATCH 1/2] Create glossary for node Add node into the glossary. --- _data/glossary/node.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 _data/glossary/node.yaml diff --git a/_data/glossary/node.yaml b/_data/glossary/node.yaml new file mode 100644 index 0000000000..215418266d --- /dev/null +++ b/_data/glossary/node.yaml @@ -0,0 +1,12 @@ +id: node +name: Node +full-link: /docs/concepts/architecture/node +tags: +- cluster +- deployment +- fundamental +- pod +short-description: > + A node is a worker machine in Kubernetes. +long-description: > + A node may be a VM or physical machine, depending on the cluster. From ae186fcace2f6124aa75392202862ba1e6fc71a4 Mon Sep 17 00:00:00 2001 From: "Sahdev P. Zala" Date: Tue, 5 Dec 2017 15:20:59 -0500 Subject: [PATCH 2/2] Create glossary for node Add node in the existing glossary. --- _data/glossary/node.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/_data/glossary/node.yaml b/_data/glossary/node.yaml index 215418266d..3586dd5ca0 100644 --- a/_data/glossary/node.yaml +++ b/_data/glossary/node.yaml @@ -1,12 +1,13 @@ id: node name: Node full-link: /docs/concepts/architecture/node -tags: -- cluster +aka: +- Minion +related: - deployment +tags: - fundamental -- pod short-description: > A node is a worker machine in Kubernetes. long-description: > - A node may be a VM or physical machine, depending on the cluster. + 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.