mirror of
https://github.com/containers/podman.git
synced 2025-05-28 13:40:33 +08:00

when doing localized tests (not varlink), we can use secondary image stores as read-only image caches. this cuts down on test time significantly because each test does not need to restore the images from a tarball anymore. Signed-off-by: baude <bbaude@redhat.com>
14 lines
567 B
Go
14 lines
567 B
Go
package integration
|
|
|
|
var (
|
|
STORAGE_FS = "vfs"
|
|
STORAGE_OPTIONS = "--storage-driver vfs"
|
|
ROOTLESS_STORAGE_FS = "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"
|
|
)
|