summaryrefslogtreecommitdiff
path: root/test/e2e/config_amd64.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-14 17:59:12 +0200
committerGitHub <noreply@github.com>2020-07-14 17:59:12 +0200
commit210f1040d26334457803bc1da74667f70630a620 (patch)
treebd2c5c93236b1ba4a9e9af85df33223a49bbff76 /test/e2e/config_amd64.go
parent3d3359086ef0ed0833a8ac8e9d06d9934d835139 (diff)
parent99cc07670099cbfa4bfc2dc7b24b39b254bc9561 (diff)
downloadpodman-210f1040d26334457803bc1da74667f70630a620.tar.gz
podman-210f1040d26334457803bc1da74667f70630a620.tar.bz2
podman-210f1040d26334457803bc1da74667f70630a620.zip
Merge pull request #6952 from baude/systemdpid1fix
add systemd to fedora image
Diffstat (limited to 'test/e2e/config_amd64.go')
-rw-r--r--test/e2e/config_amd64.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/e2e/config_amd64.go b/test/e2e/config_amd64.go
index 7e5765ac7..151120058 100644
--- a/test/e2e/config_amd64.go
+++ b/test/e2e/config_amd64.go
@@ -5,9 +5,11 @@ var (
STORAGE_OPTIONS = "--storage-driver vfs"
ROOTLESS_STORAGE_FS = "vfs"
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs"
- CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, registry, infra, labels, healthcheck}
+ CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, registry, infra, labels, healthcheck, ubi_init, ubi_minimal}
nginx = "quay.io/libpod/alpine_nginx:latest"
BB_GLIBC = "docker.io/library/busybox:glibc"
registry = "docker.io/library/registry:2.6"
labels = "quay.io/libpod/alpine_labels:latest"
+ ubi_minimal = "registry.access.redhat.com/ubi8-minimal"
+ ubi_init = "registry.access.redhat.com/ubi8-init"
)