blob: a4bec748a3df3583a80a832bde09618d6c55e12d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package integration
var (
STORAGE_FS = "overlay"
STORAGE_OPTIONS = "--storage-driver overlay"
ROOTLESS_STORAGE_FS = "vfs"
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs"
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, NGINX_IMAGE, REDIS_IMAGE, INFRA_IMAGE, LABELS_IMAGE}
NGINX_IMAGE = "quay.io/libpod/alpine_nginx-ppc64le:latest"
BB_GLIBC = "docker.io/ppc64le/busybox:glibc"
LABELS_IMAGE = "quay.io/libpod/alpine_labels-ppc64le:latest"
REGISTRY_IMAGE string
)
|