Readiness Probe - CI/CD用語集の定義
readiness probeは、podがトラフィックを受け取る準備ができているかどうかを判定します。
readiness probeとは、containerがトラフィックを受け取るべきかどうかを判定するKubernetesのチェックであり、失敗するとpodは再起動されることなくservice endpointsから外されます。
liveness probeとは異なり、readiness probeが失敗してもcontainerは再起動されません。podが再び準備完了を報告するまでトラフィックのルーティングを停止するだけであり、これはウォームアップや過負荷の際に理想的です。
関連ガイド
Liveness Probe - CI/CD Glossary DefinitionLiveness Probe: A liveness probe is a Kubernetes check that determines whether a container is still healthy;…
Startup Probe - CI/CD Glossary DefinitionStartup Probe: A startup probe is a Kubernetes check that gives a slow-starting container time to initialize…
Readiness Gate - CI/CD Glossary DefinitionReadiness Gate: A readiness gate is a condition that must be satisfied before an instance or deployment is co…