mirror of
https://github.com/containers/podman.git
synced 2025-09-10 08:22:23 +08:00

Add the ability to manually run a container's healthcheck command. This is only the first phase of implementing the healthcheck. Subsequent pull requests will deal with the exposing the results and history of healthchecks as well as the scheduling. Signed-off-by: baude <bbaude@redhat.com>
12 lines
499 B
Go
12 lines
499 B
Go
package integration
|
|
|
|
var (
|
|
STORAGE_OPTIONS = "--storage-driver vfs"
|
|
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs"
|
|
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, registry, infra, labels, healthcheck}
|
|
nginx = "quay.io/libpod/alpine_nginx:latest"
|
|
BB_GLIBC = "docker.io/library/busybox:glibc"
|
|
registry = "docker.io/library/registry:2"
|
|
labels = "quay.io/libpod/alpine_labels:latest"
|
|
)
|