Kubelet: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:


=Cache=
=Cache=
The kubelet has a cache it uses to serve various values to the node. For example, the [[Kubernetes_Cluster_Configuration_Concepts#Secrets_Projected_as_Files|secrets projected as files]] in pods running on the node are fed from this cache. The type of the cache is con�figurable. The cached values can be propagated via watch (default), ttl-based or simply redirecting all requests to the API server.

Revision as of 01:20, 24 August 2019

Internal

Overview

Each node runs an agent called kubelet, which is responsible with the node's registration with the cluster. Once a node is registered, its CPU, RAM and storage are pooled into the wider cluster pools of corresponding resources. The kubelet is watching the API server for work (pod) assignments and attempts to run them. If it is not successful for any reason, it reports the condition back to the API server. The task of actually running the pods is delegated to the local container runtime.

Cache

The kubelet has a cache it uses to serve various values to the node. For example, the secrets projected as files in pods running on the node are fed from this cache. The type of the cache is con�figurable. The cached values can be propagated via watch (default), ttl-based or simply redirecting all requests to the API server.