Liveness Probe - CI/CD用語集の定義
liveness probeは、プロセスがスタックまたは停止していることを検出したときにcontainerを再起動します。
liveness probeとは、containerがまだ正常かどうかを判定するKubernetesのチェックであり、失敗するとkubeletがcontainerを再起動します。
liveness probeは、実行中だが応答しなくなったハングしたプロセスを復旧させます。設定が過度に厳しいと再起動ループを引き起こすため、しきい値は短時間の停滞を許容すべきです。
関連ガイド
Readiness Probe - CI/CD Glossary DefinitionReadiness Probe: A readiness probe is a Kubernetes check that determines whether a container should receive t…
Startup Probe - CI/CD Glossary DefinitionStartup Probe: A startup probe is a Kubernetes check that gives a slow-starting container time to initialize…
Health Check Endpoint - CI/CD Glossary DefinitionHealth Check Endpoint: A health check endpoint is an HTTP route (often `/healthz`) that returns whether a ser…