Health Check Endpoint - CI/CD用語集の定義
health check endpointは、サービスが正常かどうかを報告するためにサービスが公開するURLです。
health check endpointとは、サービスが機能しているかどうかを返すHTTPルート(多くの場合 /healthz)であり、オーケストレーターやload balancer、モニターがそのステータスを確認できるようにします。
healthエンドポイントはliveness probeやreadiness probe、load balancerのチェックを支えます。優れたエンドポイントは常に200を返すのではなく、実際の依存関係を検証します。
関連ガイド
Liveness Probe - CI/CD Glossary DefinitionLiveness Probe: A liveness probe is a Kubernetes check that determines whether a container is still healthy;…
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…