SIGTERM - CI/CD用語集の定義
SIGTERM(signal 15)は正常なシャットダウンを要求し、プロセスにクリーンアップの機会を与えます。これで終了したプロセスは終了コード143で終わります。CIはキャンセルやtimeout時に送信します。
関連ガイド
SIGINT - CI/CD Glossary DefinitionSIGINT (signal 2) is the interrupt sent by Ctrl+C, asking a process to stop. A process terminated by it exits…
SIGKILL - CI/CD Glossary DefinitionSIGKILL: **SIGKILL** (signal 9) force-terminates a process immediately and cannot be caught. In CI it usually…
Signal - CI/CD Glossary DefinitionSignal: A **signal** is an OS message that can terminate a process. A process killed by signal N exits with c…