Readiness Gate - CI/CD用語集の定義
readiness gateは、必須の条件が満たされるまでインスタンスをローテーションから外しておきます。
readiness gateとは、インスタンスまたはdeploymentがトラフィックを受け取る準備が整ったとみなされる前に満たされる必要がある条件であり、rolloutが外部シグナルを待てるようにします。
基本的なreadiness probeを超えて、readiness gateはトラフィックがルーティングされる前に外部の状態(load balancerがインスタンスを登録するなど)を要求できます。これにより、まだ準備が整っていないターゲットへ負荷を移すことを防ぎます。
関連ガイド
Readiness Probe - CI/CD Glossary DefinitionReadiness Probe: A readiness probe is a Kubernetes check that determines whether a container should receive t…
Rolling Update - CI/CD Glossary DefinitionRolling Update: A rolling update replaces instances of an application in batches, updating a few at a time wh…
Health Check Endpoint - CI/CD Glossary DefinitionHealth Check Endpoint: A health check endpoint is an HTTP route (often `/healthz`) that returns whether a ser…