etcd - CI/CD用語集の定義
etcd は Kubernetes クラスタの全状態、つまりすべてのオブジェクト、その spec、その status を保持する分散キーバリューストアです。単一の信頼できる情報源であるため、etcd を失うことはクラスタを失うことを意味します。
なぜ重要か
すべての kubectl apply は最終的に etcd へ書き込むため、etcd の性能が API server のレイテンシを左右します。大規模クラスタでの CI での遅いデプロイは、多くの場合 etcd の競合に起因します。
関連ガイド
Control Plane - CI/CD Glossary DefinitionControl Plane: The control plane is the set of Kubernetes components that make global decisions about the clu…
Scheduler (Kubernetes) - CI/CD Glossary DefinitionScheduler (Kubernetes): The scheduler is the control-plane component that assigns newly created pods to nodes…
Worker Node - CI/CD Glossary DefinitionWorker Node: A worker node is a machine (VM or physical) in a Kubernetes cluster that runs application pods.…