DaemonSet - CI/CD用語集の定義
DaemonSet は、すべてのノード(または selector に一致するすべてのノード)で pod のコピーが 1 つ実行されることを保証し、ノードが参加すると自動的にその pod を追加します。log シッパー、メトリクスエージェント、CNI plugin などのノードレベルのエージェントに使われます。
なぜ重要か
DaemonSet はノード数を追跡するため、クラスタをスケールアップすると、CD pipeline を変更することなく、新しいノードにエージェントが自動的にスケジュールされます。
関連ガイド
StatefulSet - CI/CD Glossary DefinitionStatefulSet: A StatefulSet manages pods with stable identities and ordered, graceful deployment and scaling,…
ReplicaSet - CI/CD Glossary DefinitionReplicaSet: A ReplicaSet keeps a specified number of identical pod replicas running, replacing any that die.…
Worker Node - CI/CD Glossary DefinitionWorker Node: A worker node is a machine (VM or physical) in a Kubernetes cluster that runs application pods.…