Worker Node - Definição do Glossário CI/CD
Um worker node é uma máquina (VM ou física) em um cluster Kubernetes que roda pods de aplicação. Cada node roda um kubelet, um container runtime e o kube-proxy, e reporta seu status ao control plane.
Runners em nodes
Runners de CI self-hosted são frequentemente implantados como pods em worker nodes (por exemplo via Actions Runner Controller), então a capacidade de runners escala com a capacidade dos nodes.
Guias relacionados
Control Plane - CI/CD Glossary DefinitionControl Plane: The control plane is the set of Kubernetes components that make global decisions about the clu…
kubelet - CI/CD Glossary Definitionkubelet: The kubelet is the agent that runs on every Kubernetes node. It watches the API server for pods assi…
Taint and Toleration - CI/CD Glossary DefinitionTaint and Toleration: A taint marks a node to repel pods that do not tolerate it; a toleration on a pod lets…