mirror of
https://github.com/containers/podman.git
synced 2025-09-23 13:13:42 +08:00
healtcheck phase 2
integration of healthcheck into create and run as well as inspect. healthcheck enhancements are as follows: * add the following options to create|run so that non-docker images can define healthchecks at the container level. * --healthcheck-command * --healthcheck-retries * --healthcheck-interval * --healthcheck-start-period * podman create|run --healthcheck-command=none disables healthcheck as described by an image. * the healthcheck itself and the healthcheck "history" can now be observed in podman inspect * added the wiring for healthcheck history which logs the health history of the container, the current failed streak attempts, and log entries for the last five attempts which themselves have start and stop times, result, and a 500 character truncated (if needed) log of stderr/stdout. The timings themselves are not implemented in this PR but will be in future enablement (i.e. next). Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
@ -87,7 +87,6 @@ type CreateConfig struct {
|
||||
Env map[string]string //env
|
||||
ExposedPorts map[nat.Port]struct{}
|
||||
GroupAdd []string // group-add
|
||||
HasHealthCheck bool
|
||||
HealthCheck *manifest.Schema2HealthConfig
|
||||
HostAdd []string //add-host
|
||||
Hostname string //hostname
|
||||
@ -562,7 +561,7 @@ func (c *CreateConfig) GetContainerCreateOptions(runtime *libpod.Runtime, pod *l
|
||||
// Always use a cleanup process to clean up Podman after termination
|
||||
options = append(options, libpod.WithExitCommand(c.createExitCommand()))
|
||||
|
||||
if c.HasHealthCheck {
|
||||
if c.HealthCheck != nil {
|
||||
options = append(options, libpod.WithHealthCheck(c.HealthCheck))
|
||||
logrus.Debugf("New container has a health check")
|
||||
}
|
||||
|
Reference in New Issue
Block a user