-
It seems like graceful shutdown is only implemented for SIGINT. Kuberentes sends SIGTERM by default to initiate graceful shutdown. Can this be made configurable? AFAIK it is not configurable on the k8s side. (I also commented on the original PR in #105 (comment) but since it's been closed for a while this may be a better discussion venue). |
Beta Was this translation helpful? Give feedback.
Answered by
levkk
Jun 21, 2024
Replies: 1 comment 5 replies
-
It should be configurable in Docker: https://docs.docker.com/reference/dockerfile/#stopsignal SIGINT is traditionally for graceful shutdown, SIGTERM is for immediate shutdown. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
adriangb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be configurable in Docker: https://docs.docker.com/reference/dockerfile/#stopsignal
SIGINT is traditionally for graceful shutdown, SIGTERM is for immediate shutdown.