mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-08 09:55:42 +00:00
We missed bumping the go module, so let's do it now :) * Automated go code with github.com/sirkon/go-imports-rename * Manually via `vgrep podman/v2` the rest Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
20 lines
550 B
Go
20 lines
550 B
Go
package common
|
|
|
|
import (
|
|
"github.com/containers/podman/v3/cmd/podman/registry"
|
|
)
|
|
|
|
var (
|
|
// DefaultHealthCheckInterval default value
|
|
DefaultHealthCheckInterval = "30s"
|
|
// DefaultHealthCheckRetries default value
|
|
DefaultHealthCheckRetries uint = 3
|
|
// DefaultHealthCheckStartPeriod default value
|
|
DefaultHealthCheckStartPeriod = "0s"
|
|
// DefaultHealthCheckTimeout default value
|
|
DefaultHealthCheckTimeout = "30s"
|
|
// DefaultImageVolume default value
|
|
DefaultImageVolume = "bind"
|
|
// Pull in configured json library
|
|
json = registry.JSONLibrary()
|
|
)
|