I simply do CMD ["node", "/dist/app.js"]
from my dockerfile to run my master process inside the container. Container is hosted in Kubernetes.
When something goes wrong with the pod, kubernetes rc will spin up another one.
However, if my master process crashes inside the pod-->container, will Kubernetes know about it?
Wondering whats the best way to monitor the process running inside the container, log crashes and restart the process as appropriate so that my client doesn't get 500 when calls gets routed to the crashed container.
In the VM world, I used forever, where forever will give me logs + allows me to configure restarts etc.. what is equivalent in container/kubernetes world?
Thanks !
Liveness and readiness probes are designated to be pod health checks in Kubernetes world.