Health Endpoint - CI/CD用語集の定義
health endpoint は、サービスが稼働しているかを報告する URL で、deploy 中のトラフィック制御に使われます。
health endpoint は、サービスが稼働しているかを報告する URL (多くの場合 /health) で、load balancer や deploy pipeline がトラフィックを制御するために使用します。正常な場合は通常 200 を返します。
deploy pipeline は rollout 後に health endpoint をポーリングし、200 を返してから初めてトラフィックを切り替えます。health check の失敗は、多くの CD システムで rollback を引き起こします。
関連ガイド
Readiness Endpoint - CI/CD Glossary DefinitionReadiness Endpoint: A readiness endpoint reports whether a service is ready to accept traffic, for example af…
Liveness Endpoint - CI/CD Glossary DefinitionLiveness Endpoint: A liveness endpoint reports whether a service process is alive and not deadlocked; a faili…
Status Code - CI/CD Glossary DefinitionStatus Code: A status code is the three-digit HTTP number in a response that signals the result: 2xx success,…