mirror of https://github.com/containers/podman.git
24 lines
591 B
Go
24 lines
591 B
Go
package abi
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containers/podman/v3/libpod/define"
|
|
"github.com/containers/podman/v3/pkg/domain/entities"
|
|
)
|
|
|
|
func (ic *ContainerEngine) HealthCheckRun(ctx context.Context, nameOrID string, options entities.HealthCheckOptions) (*define.HealthCheckResults, error) {
|
|
status, err := ic.Libpod.HealthCheck(nameOrID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
hcStatus := define.HealthCheckUnhealthy
|
|
if status == define.HealthCheckSuccess {
|
|
hcStatus = define.HealthCheckHealthy
|
|
}
|
|
report := define.HealthCheckResults{
|
|
Status: hcStatus,
|
|
}
|
|
return &report, nil
|
|
}
|