Pod Disruption Budget - CI/CD用語集の定義
pod disruption budget は、アプリケーションの pod が一度に自発的に退避される数(ノードの drain や upgrade 中)を制限し、最小限の数を利用可能に保ちます。ノードのクラッシュのような非自発的な障害からは保護しません。
なぜ重要か
CD でのクラスタ upgrade 中、PDB はローリングなノードの drain がサービスを最小限の健全なレプリカ数より下げないことを保証し、自ら招く障害を回避します。
関連ガイド
Deployment Strategy - CI/CD Glossary DefinitionDeployment Strategy: A deployment strategy is how a new version replaces the old one. The two built-in Kubern…
Rolling Update - CI/CD Glossary DefinitionRolling Update: A rolling update replaces pods incrementally, bringing up new ones and tearing down old ones…
ReplicaSet - CI/CD Glossary DefinitionReplicaSet: A ReplicaSet keeps a specified number of identical pod replicas running, replacing any that die.…