Graceful Shutdown - CI/CD用語集の定義
graceful shutdownはSIGTERMに応じて新しい作業を止め、処理中のリクエストを完了させ、リソースを解放してから終了するプロセスで、deployやscale-downで何も取りこぼしません。
関連ガイド
Drain - CI/CD Glossary DefinitionDraining stops sending new work to an instance while letting existing work finish, so it can be retired or up…
SIGTERM - CI/CD Glossary DefinitionSIGTERM (signal 15) asks a process to shut down gracefully so it can clean up. CI sends it on cancel or timeo…
Readiness Probe - CI/CD Glossary DefinitionA readiness probe tells Kubernetes when a pod is ready to receive traffic. Until it passes, the pod stays out…