mirror of
https://github.com/containers/podman.git
synced 2025-12-02 02:58:03 +08:00
The image is way to big (over 800MB) that slows tests down as we always have to pull this, the tests itself are also super slow due the entrypoint logic that we don't care about. We should be testing for features needed and not specific tools. I think the current changes should have a similar coverage in terms of podman features, it no longer tests toolbox but IMO this never was a task for podman CI tests. The main driver for this is to make the tests run entirely based on tmpfs and this image is just to much[1]. [1] https://github.com/containers/podman/pull/22533 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
16 lines
2.1 KiB
Go
16 lines
2.1 KiB
Go
package integration
|
|
|
|
var (
|
|
STORAGE_FS = "overlay" //nolint:revive,stylecheck
|
|
STORAGE_OPTIONS = "--storage-driver overlay" //nolint:revive,stylecheck
|
|
ROOTLESS_STORAGE_FS = "overlay" //nolint:revive,stylecheck
|
|
ROOTLESS_STORAGE_OPTIONS = "--storage-driver 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:20240123" //nolint:revive,stylecheck
|
|
SYSTEMD_IMAGE = "quay.io/libpod/systemd-image:20240124" //nolint:revive,stylecheck
|
|
CIRROS_IMAGE = "quay.io/libpod/cirros:latest" //nolint:revive,stylecheck
|
|
)
|