Automated Gate - CI/CD用語集の定義
automated gateは、人間の承認を必要とせず、機械が確認する条件だけで変更を合格または不合格にします。
automated gateは、合格/不合格の判断が完全に機械評価の条件で下されるpipelineのチェックポイントで、人が介在しません。
automated gateは、速く信頼できるデリバリーの背骨です。テストの成功、合格するセキュリティスキャン、coverageの閾値が自ら判断します。人を待つことがないため、commit量に応じてスケールします。
例
merge前に緑でなければならない必須のstatus check、重大なCVEでbuildを不合格にするscanner、promotionの前にHTTP 200を返さなければならないsmoke testは、いずれもautomated gateです。
関連ガイド
Manual Gate - CI/CD Glossary DefinitionManual Gate: A manual gate is any pipeline checkpoint that requires deliberate human action (a click, an appr…
Quality Gate - CI/CD Glossary DefinitionQuality Gate: A quality gate is a pass/fail checkpoint that fails a build when code quality metrics (coverage…
Gate Criteria - CI/CD Glossary DefinitionGate Criteria: Gate criteria are the explicit, measurable conditions a change must meet to pass a pipeline ga…