kubernetes-graceful-shutdown-example
kubernetes-graceful-shutdown-example copied to clipboard
Example app for graceful start and stop with Kubernetes and Node.js
Results
2
kubernetes-graceful-shutdown-example issues
Sort by
recently updated
recently updated
newest added
According to https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#when-should-you-use-liveness-or-readiness-probes a failing readiness probe is not needed for shutting down a pod. It makes no difference if it fails or not. > Note that if you just...
On shutdown, when `serverDestroy` is called, it always fails with this error: ``` Error happened during graceful shutdown TypeError: Cannot read property 'apply' of undefined ``` The problem seems to...