github.com/containers/podman/v4@v4.9.4/test/e2e/config.go (about)

     1  package integration
     2  
     3  var (
     4  	REDIS_IMAGE       = "quay.io/libpod/redis:alpine" //nolint:revive,stylecheck
     5  	fedoraMinimal     = "quay.io/libpod/systemd-image:20230531"
     6  	ALPINE            = "quay.io/libpod/alpine:latest"
     7  	ALPINELISTTAG     = "quay.io/libpod/alpine:3.10.2"
     8  	ALPINELISTDIGEST  = "quay.io/libpod/alpine@sha256:fa93b01658e3a5a1686dc3ae55f170d8de487006fb53a28efcd12ab0710a2e5f"
     9  	ALPINEAMD64DIGEST = "quay.io/libpod/alpine@sha256:634a8f35b5f16dcf4aaa0822adc0b1964bb786fca12f6831de8ddc45e5986a00"
    10  	ALPINEAMD64ID     = "961769676411f082461f9ef46626dd7a2d1e2b2a38e6a44364bcbecf51e66dd4"
    11  	ALPINEARM64DIGEST = "quay.io/libpod/alpine@sha256:f270dcd11e64b85919c3bab66886e59d677cf657528ac0e4805d3c71e458e525"
    12  	ALPINEARM64ID     = "915beeae46751fc564998c79e73a1026542e945ca4f73dc841d09ccc6c2c0672"
    13  	INFRA_IMAGE       = "quay.io/libpod/k8s-pause:3.5" //nolint:revive,stylecheck
    14  	BB                = "quay.io/libpod/busybox:latest"
    15  	HEALTHCHECK_IMAGE = "quay.io/libpod/alpine_healthcheck:latest" //nolint:revive,stylecheck
    16  	fedoraToolbox     = "registry.fedoraproject.org/fedora-toolbox:36"
    17  	volumeTest        = "quay.io/libpod/volume-plugin-test-img:20220623"
    18  
    19  	// This image has seccomp profiles that blocks all syscalls.
    20  	// The intention behind blocking all syscalls is to prevent
    21  	// regressions in the future.  The required syscalls can vary
    22  	// depending on which runtime we're using.
    23  	alpineSeccomp = "quay.io/libpod/alpine-with-seccomp:label"
    24  	// This image has a bogus/invalid seccomp profile which should
    25  	// yield a json error when being read.
    26  	alpineBogusSeccomp = "quay.io/libpod/alpine-with-bogus-seccomp:label"
    27  
    28  	// ImageCacheDir is initialized at runtime.
    29  	// e.g., filepath.Join(os.TempDir(), "imagecachedir")
    30  	// This directory should be used by per-user.
    31  	// Note: "ImageCacheDir" has nothing to do with "PODMAN_TEST_IMAGE_CACHE_DIR".
    32  	ImageCacheDir = ""
    33  )