You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One expects setting gracefulShutdown.enabled: false does what it says. But indeed this will just result in not passing a terminationGracePeriodSeconds value at all and that will result in defaulting to whatever is the default terminationGracePeriodSeconds value on k8s. (on my local k8s install that is 60 seconds)
What you need to do for disabling graceful shutdown is gracefulShutdown.maxWaitSeconds: 0
I'd suggest getting rid of gracefulShutdown.enabled
The text was updated successfully, but these errors were encountered:
One expects setting
gracefulShutdown.enabled: false
does what it says. But indeed this will just result in not passing aterminationGracePeriodSeconds
value at all and that will result in defaulting to whatever is the defaultterminationGracePeriodSeconds
value on k8s. (on my local k8s install that is 60 seconds)What you need to do for disabling graceful shutdown is
gracefulShutdown.maxWaitSeconds: 0
I'd suggest getting rid of
gracefulShutdown.enabled
The text was updated successfully, but these errors were encountered: