mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-31 12:47:57 +00:00
A number of standard image names were lower-case, leading to
confusion in code such as:
registry := podman(... , "-n", "registry", registry, ...)
^--- variable ^---- constant
Fix a number of those to be capitalized and with _IMAGE suffix:
registry := podman(..., REGISTRY_IMAGE
Signed-off-by: Ed Santiago <santiago@redhat.com>
13 lines
566 B
Go
13 lines
566 B
Go
package integration
|
|
|
|
var (
|
|
STORAGE_FS = "overlay"
|
|
STORAGE_OPTIONS = "--storage-driver overlay"
|
|
ROOTLESS_STORAGE_FS = "vfs"
|
|
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs"
|
|
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, NGINX_IMAGE, REDIS_IMAGE, INFRA_IMAGE, LABELS_IMAGE}
|
|
NGINX_IMAGE = "quay.io/libpod/alpine_nginx-ppc64le:latest"
|
|
BB_GLIBC = "docker.io/ppc64le/busybox:glibc"
|
|
LABELS_IMAGE = "quay.io/libpod/alpine_labels-ppc64le:latest"
|
|
REGISTRY_IMAGE string
|
|
)
|