use quay.io/libpod/fedora-minimal for reliability

Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
Brent Baude
2020-02-12 16:45:03 -06:00
parent 2281cbdd6d
commit 2aacfade75
4 changed files with 3 additions and 5 deletions

View File

@ -18,7 +18,6 @@ import (
var ( var (
bbNames = []string{"docker.io/library/busybox:latest", "docker.io/library/busybox", "docker.io/busybox:latest", "docker.io/busybox", "busybox:latest", "busybox"} bbNames = []string{"docker.io/library/busybox:latest", "docker.io/library/busybox", "docker.io/busybox:latest", "docker.io/busybox", "busybox:latest", "busybox"}
bbGlibcNames = []string{"docker.io/library/busybox:glibc", "docker.io/busybox:glibc", "busybox:glibc"} bbGlibcNames = []string{"docker.io/library/busybox:glibc", "docker.io/busybox:glibc", "busybox:glibc"}
fedoraNames = []string{"registry.fedoraproject.org/fedora-minimal:latest", "registry.fedoraproject.org/fedora-minimal", "fedora-minimal:latest", "fedora-minimal"}
) )
type localImageTest struct { type localImageTest struct {
@ -139,7 +138,6 @@ func TestImage_New(t *testing.T) {
ir.Eventer = events.NewNullEventer() ir.Eventer = events.NewNullEventer()
// Build the list of pull names // Build the list of pull names
names = append(names, bbNames...) names = append(names, bbNames...)
names = append(names, fedoraNames...)
writer := os.Stdout writer := os.Stdout
// Iterate over the names and delete the image // Iterate over the names and delete the image

View File

@ -2,7 +2,7 @@ package integration
var ( var (
redis = "docker.io/library/redis:alpine" redis = "docker.io/library/redis:alpine"
fedoraMinimal = "registry.fedoraproject.org/fedora-minimal:latest" fedoraMinimal = "quay.io/libpod/fedora-minimal:latest"
ALPINE = "docker.io/library/alpine:latest" ALPINE = "docker.io/library/alpine:latest"
ALPINELISTTAG = "docker.io/library/alpine:3.10.2" ALPINELISTTAG = "docker.io/library/alpine:3.10.2"
ALPINELISTDIGEST = "docker.io/library/alpine@sha256:72c42ed48c3a2db31b7dafe17d275b634664a708d901ec9fd57b1529280f01fb" ALPINELISTDIGEST = "docker.io/library/alpine@sha256:72c42ed48c3a2db31b7dafe17d275b634664a708d901ec9fd57b1529280f01fb"

View File

@ -205,7 +205,7 @@ var _ = Describe("Podman load", func() {
podmanTest.RestoreArtifact(fedoraMinimal) podmanTest.RestoreArtifact(fedoraMinimal)
outfile := filepath.Join(podmanTest.TempDir, "load_test.tar.gz") outfile := filepath.Join(podmanTest.TempDir, "load_test.tar.gz")
setup := podmanTest.PodmanNoCache([]string{"tag", "fedora-minimal", "hello"}) setup := podmanTest.PodmanNoCache([]string{"tag", fedoraMinimal, "hello"})
setup.WaitWithDefaultTimeout() setup.WaitWithDefaultTimeout()
Expect(setup.ExitCode()).To(Equal(0)) Expect(setup.ExitCode()).To(Equal(0))

View File

@ -29,7 +29,7 @@ var (
infra = "k8s.gcr.io/pause:3.1" infra = "k8s.gcr.io/pause:3.1"
BB = "docker.io/library/busybox:latest" BB = "docker.io/library/busybox:latest"
redis = "docker.io/library/redis:alpine" redis = "docker.io/library/redis:alpine"
fedoraMinimal = "registry.fedoraproject.org/fedora-minimal:latest" fedoraMinimal = "quay.io/libpod/fedora-minimal:latest"
) )
type EndpointTestIntegration struct { type EndpointTestIntegration struct {