kubelet - CI/CD用語集の定義
kubeletは、すべてのKubernetesノード上で動作するエージェントです。自ノードに割り当てられたpodをAPI serverから監視し、runtimeを通じてそれらのコンテナを起動し、健全性を報告します。Pending や NodeNotReady で止まったpodは、しばしばkubeletの問題を示しています。
なぜ重要か
kubeletはリソース制限とliveness/readinessプローブを強制します。プローブが失敗すると、kubeletはコンテナを再起動します。これが、deployが CrashLoopBackOff でループする理由です。
関連ガイド
Worker Node - CI/CD Glossary DefinitionWorker Node: A worker node is a machine (VM or physical) in a Kubernetes cluster that runs application pods.…
Control Plane - CI/CD Glossary DefinitionControl Plane: The control plane is the set of Kubernetes components that make global decisions about the clu…
Resource Request and Limit - CI/CD Glossary DefinitionResource Request and Limit: A resource request is the CPU and memory a pod is guaranteed and is used for sche…