Blue-Green Deployment - CI/CD用語集の定義
blue-green deployment は、即時のカットオーバーと rollback のために2つの完全な環境間でトラフィックを切り替えます。
blue-green deployment は、2つの同一の環境(blue と green)を動かし、新しいバージョンをアイドルな方に deploy して、トラフィックを一度に切り替えることで、即時の rollback を可能にします。
新しいバージョンをアイドルな環境で deploy して検証し、その後ルーターを切り替えます。何かが壊れたら切り戻せるため、その場での更新が持つ部分的な状態のリスクを避けられます。
関連ガイド
Rolling Update - CI/CD Glossary DefinitionRolling Update: A rolling update replaces instances of an application in batches, updating a few at a time wh…
Surge (Deployment) - CI/CD Glossary DefinitionSurge (Deployment): Surge in a rolling update is the number or percentage of extra instances allowed above th…
Readiness Gate - CI/CD Glossary DefinitionReadiness Gate: A readiness gate is a condition that must be satisfied before an instance or deployment is co…