コントロールプレーン - CI/CD用語集の定義
コントロールプレーンは、クラスタに関するグローバルな判断を下すKubernetesコンポーネントの集合です。API server、scheduler、controller manager、etcdからなります。望ましい状態を保ち、クラスタをそれへと収束させます。
CIでは
deployのjobはAPI server(コントロールプレーンの入り口)とだけやり取りします。kubectl apply がハングしたりタイムアウトしたりする場合、原因は通常worker nodeではなく、コントロールプレーンかその資格情報です。
関連ガイド
Worker Node - CI/CD Glossary DefinitionWorker Node: A worker node is a machine (VM or physical) in a Kubernetes cluster that runs application pods.…
etcd - CI/CD Glossary Definitionetcd: etcd is the distributed key-value store that holds all Kubernetes cluster state: every object, its spec…
Scheduler (Kubernetes) - CI/CD Glossary DefinitionScheduler (Kubernetes): The scheduler is the control-plane component that assigns newly created pods to nodes…