github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/test/e2e/config.go (about)

     1  package integration
     2  
     3  var (
     4  	redis             = "docker.io/library/redis:alpine"
     5  	fedoraMinimal     = "quay.io/libpod/fedora-minimal:latest"
     6  	ALPINE            = "docker.io/library/alpine:latest"
     7  	ALPINELISTTAG     = "docker.io/library/alpine:3.10.2"
     8  	ALPINELISTDIGEST  = "docker.io/library/alpine@sha256:72c42ed48c3a2db31b7dafe17d275b634664a708d901ec9fd57b1529280f01fb"
     9  	ALPINEAMD64DIGEST = "docker.io/library/alpine@sha256:acd3ca9941a85e8ed16515bfc5328e4e2f8c128caa72959a58a127b7801ee01f"
    10  	ALPINEAMD64ID     = "961769676411f082461f9ef46626dd7a2d1e2b2a38e6a44364bcbecf51e66dd4"
    11  	ALPINEARM64DIGEST = "docker.io/library/alpine@sha256:db7f3dcef3d586f7dd123f107c93d7911515a5991c4b9e51fa2a43e46335a43e"
    12  	ALPINEARM64ID     = "915beeae46751fc564998c79e73a1026542e945ca4f73dc841d09ccc6c2c0672"
    13  	infra             = "k8s.gcr.io/pause:3.2"
    14  	BB                = "docker.io/library/busybox:latest"
    15  	healthcheck       = "docker.io/libpod/alpine_healthcheck:latest"
    16  	ImageCacheDir     = "/tmp/podman/imagecachedir"
    17  
    18  	// This image has seccomp profiles that blocks all syscalls.
    19  	// The intention behind blocking all syscalls is to prevent
    20  	// regressions in the future.  The required syscalls can vary
    21  	// depending on which runtime we're using.
    22  	alpineSeccomp = "docker.io/libpod/alpine-with-seccomp:label"
    23  	// This image has a bogus/invalid seccomp profile which should
    24  	// yield a json error when being read.
    25  	alpineBogusSeccomp = "docker.io/libpod/alpine-with-bogus-seccomp:label"
    26  )