Rolling Update - CI/CD用語集の定義
rolling update は、サービスが利用可能なまま保たれるよう古いインスタンスを段階的に入れ替えます。
rolling update は、アプリケーションのインスタンスをバッチで置き換え、残りが提供を続ける間に一度に少数ずつ更新することで、その deployment が全面的な停止を引き起こさないようにします。
Kubernetes のようなオーケストレーターは、一度に利用不可または追加できるインスタンス数の設定でペースを制御します。readiness チェックが次に進む前に各バッチをゲートします。
関連ガイド
Surge (Deployment) - CI/CD Glossary DefinitionSurge (Deployment): Surge in a rolling update is the number or percentage of extra instances allowed above th…
Blue-Green Deployment - CI/CD Glossary DefinitionBlue-Green Deployment: A blue-green deployment runs two identical environments (blue and green); the new vers…
Readiness Gate - CI/CD Glossary DefinitionReadiness Gate: A readiness gate is a condition that must be satisfied before an instance or deployment is co…