Skip to content

Instantly share code, notes, and snippets.

@xwlee
Last active April 20, 2020 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xwlee/dd10ad944034f07f31bc89be4b1e10eb to your computer and use it in GitHub Desktop.
Save xwlee/dd10ad944034f07f31bc89be4b1e10eb to your computer and use it in GitHub Desktop.
Kubelet

Kubelet

  • The kubelet is the agent that runs on each node, and is responsible for launching pods.
  • It doesn't directly run containers but instead controls a runtime, such as Docker or rkt.
  • The kubelet operates at the level of PodSpec, so it only knows how to launch pods.
  • The kubelet also runs a tool called cadvisor that collects metrics about resource usage on the node, and using each container that is running on the node, this information can then be used by Kubernetes when making scheduling decisions.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment