InterviewSolution
Saved Bookmarks
| 1. |
What Is A Node In Kubernetes? |
|
Answer» 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 the SERVICES necessary to RUN PODS and is managed by the master components. The services on a node include Docker, kubelet and kube-proxy. 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 the services necessary to run pods and is managed by the master components. The services on a node include Docker, kubelet and kube-proxy. |
|