Files
podman/test/e2e/config_amd64.go
Kir Kolyshkin 0f975f8526 ci: rm allow-unused from nolintlint settings
This was added by commit 84e42877a ("make lint: re-enable revive"),
making nolintlint became almost useless.

Remove the ungodly amount of unused nolint annotations.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
2025-03-31 12:27:55 -07:00

17 lines
669 B
Go

//go:build linux || freebsd
package integration
var (
STORAGE_FS = "overlay"
STORAGE_OPTIONS = "--storage-driver overlay"
ROOTLESS_STORAGE_FS = "overlay"
CACHE_IMAGES = []string{ALPINE, BB, NGINX_IMAGE, REDIS_IMAGE, REGISTRY_IMAGE, INFRA_IMAGE, CITEST_IMAGE, HEALTHCHECK_IMAGE, SYSTEMD_IMAGE}
NGINX_IMAGE = "quay.io/libpod/alpine_nginx:latest"
BB_GLIBC = "docker.io/library/busybox:glibc"
REGISTRY_IMAGE = "quay.io/libpod/registry:2.8.2"
CITEST_IMAGE = "quay.io/libpod/testimage:20241011"
SYSTEMD_IMAGE = "quay.io/libpod/systemd-image:20240124"
CIRROS_IMAGE = "quay.io/libpod/cirros:latest"
)