chore: init container healthcheck const

This commit is contained in:
Pasha Sviderski
2026-02-26 19:39:49 +10:00
parent 2940965e31
commit a5a9ef5444
+11
View File
@@ -0,0 +1,11 @@
package api
import "time"
const (
// defaultDockerHealthcheckInterval is the default Docker interval between health check runs.
defaultDockerHealthcheckInterval = 30 * time.Second
// defaultDockerHealthcheckRetries is the default Docker number of consecutive failures needed
// to consider the container unhealthy.
defaultDockerHealthcheckRetries = 3
)