mirror of
https://github.com/containers/podman.git
synced 2025-11-30 10:07:33 +08:00
...for debugging #24147, because "md5sum mismatch" is not the best way to troubleshoot bytestream differences. socat is run on the container, so this requires building a new testimage (20241011). Bump to new CI VMs[1] which include it. [1] https://github.com/containers/automation_images/pull/389 Signed-off-by: Ed Santiago <santiago@redhat.com>
17 lines
1.9 KiB
Go
17 lines
1.9 KiB
Go
//go:build linux || freebsd
|
|
|
|
package integration
|
|
|
|
var (
|
|
STORAGE_FS = "overlay" //nolint:revive,stylecheck
|
|
STORAGE_OPTIONS = "--storage-driver overlay" //nolint:revive,stylecheck
|
|
ROOTLESS_STORAGE_FS = "overlay" //nolint:revive,stylecheck
|
|
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, NGINX_IMAGE, REDIS_IMAGE, REGISTRY_IMAGE, INFRA_IMAGE, CITEST_IMAGE, HEALTHCHECK_IMAGE, SYSTEMD_IMAGE} //nolint:revive,stylecheck
|
|
NGINX_IMAGE = "quay.io/lsm5/alpine_nginx-aarch64:latest" //nolint:revive,stylecheck
|
|
BB_GLIBC = "docker.io/library/busybox:glibc" //nolint:revive,stylecheck
|
|
REGISTRY_IMAGE = "quay.io/libpod/registry:2.8.2" //nolint:revive,stylecheck
|
|
CITEST_IMAGE = "quay.io/libpod/testimage:20241011" //nolint:revive,stylecheck
|
|
SYSTEMD_IMAGE = "quay.io/libpod/systemd-image:20240124" //nolint:revive,stylecheck
|
|
CIRROS_IMAGE = "quay.io/libpod/cirros:latest" //nolint:revive,stylecheck
|
|
)
|