Liveness Endpoint - CI/CD用語集の定義
liveness endpoint はプロセスが生きているかを報告し、失敗するとオーケストレーターによる再起動を引き起こします。
liveness endpoint は、サービスのプロセスが生きていてデッドロックしていないかを報告します。liveness probe が失敗すると、オーケストレーターがそれを再起動します。トラフィックを制御する準備状態とは異なります。
生存状態は「これは再起動すべきか?」に答え、準備状態は「これにトラフィックを送るべきか?」に答えます。この 2 つを混同すると、deploy 中に再起動ループを引き起こすことがあります。
関連ガイド
Readiness Endpoint - CI/CD Glossary DefinitionReadiness Endpoint: A readiness endpoint reports whether a service is ready to accept traffic, for example af…
Health Endpoint - CI/CD Glossary DefinitionHealth Endpoint: A health endpoint is a URL (often `/health`) that reports whether a service is running, used…