Most our services rely on health checks. Any timeline for these for Machines?
- If there aren’t health-checks for Machines, what does the restart-policy act on? Does it monitor the
exit
code to apply restart-policies?
a. Doesno
mean, a new vm is started on next request?
b. Doesalways
mean, even if itexit
s with0
, the main process is restarted inside the existing vm?
c. Doeson-failure
mean, only on non-zeroexit
codes, the main process is restarted in the existing vm? - What does the default policy do? In all our Machine configs, the restart-policy is empty.
"restart": {
"policy": ""
}
Thanks.