Does Kubernetes have webhook or similar functionality?

7/7/2017

I'd like a webserver to be notified if Kubernetes kills a pod and for what reason e.g. DEADLINE_EXCEEDED or OOM. Does Kubernetes have webhook functionality for this or some other mechanism where I can be told when it does something.

-- nickponline
kubernetes
kubernetes-health-check
webhooks

1 Answer

7/7/2017

There isn't a webhook per-se, however there are kubernetes events that you can listen to.

Quick google turned up this article

-- Dan Murphy
Source: StackOverflow