replace quay.io/baude to quay.io/libpod

images used for our integration suite have moved from my work account
to a group organization called libpod.

Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
baude
2018-11-01 10:31:44 -05:00
parent 20a3a53c2f
commit a610f0f869
4 changed files with 8 additions and 8 deletions

View File

@ -4,8 +4,8 @@ var (
STORAGE_OPTIONS = "--storage-driver vfs" STORAGE_OPTIONS = "--storage-driver vfs"
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs" ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs"
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, registry, infra, labels} CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, registry, infra, labels}
nginx = "quay.io/baude/alpine_nginx:latest" nginx = "quay.io/libpod/alpine_nginx:latest"
BB_GLIBC = "docker.io/library/busybox:glibc" BB_GLIBC = "docker.io/library/busybox:glibc"
registry = "docker.io/library/registry:2" registry = "docker.io/library/registry:2"
labels = "quay.io/baude/alpine_labels:latest" labels = "quay.io/libpod/alpine_labels:latest"
) )

View File

@ -4,8 +4,8 @@ var (
STORAGE_OPTIONS = "--storage-driver overlay" STORAGE_OPTIONS = "--storage-driver overlay"
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs" ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs"
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, infra, labels} CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, infra, labels}
nginx = "quay.io/baude/alpine_nginx-ppc64le:latest" nginx = "quay.io/libpod/alpine_nginx-ppc64le:latest"
BB_GLIBC = "docker.io/ppc64le/busybox:glibc" BB_GLIBC = "docker.io/ppc64le/busybox:glibc"
labels = "quay.io/baude/alpine_labels-ppc64le:latest" labels = "quay.io/libpod/alpine_labels-ppc64le:latest"
registry string registry string
) )

View File

@ -63,11 +63,11 @@ var _ = Describe("Podman pull", func() {
}) })
It("podman pull from alternate registry without tag", func() { It("podman pull from alternate registry without tag", func() {
session := podmanTest.Podman([]string{"pull", "quay.io/baude/alpine_nginx"}) session := podmanTest.Podman([]string{"pull", "quay.io/libpod/alpine_nginx"})
session.WaitWithDefaultTimeout() session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0)) Expect(session.ExitCode()).To(Equal(0))
session = podmanTest.Podman([]string{"rmi", "quay.io/baude/alpine_nginx"}) session = podmanTest.Podman([]string{"rmi", "quay.io/libpod/alpine_nginx"})
session.WaitWithDefaultTimeout() session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0)) Expect(session.ExitCode()).To(Equal(0))
}) })

View File

@ -52,13 +52,13 @@ var _ = Describe("Podman run", func() {
It("podman run a container based on on a short name with localhost", func() { It("podman run a container based on on a short name with localhost", func() {
podmanTest.RestoreArtifact(nginx) podmanTest.RestoreArtifact(nginx)
tag := podmanTest.Podman([]string{"tag", nginx, "localhost/baude/alpine_nginx:latest"}) tag := podmanTest.Podman([]string{"tag", nginx, "localhost/libpod/alpine_nginx:latest"})
tag.WaitWithDefaultTimeout() tag.WaitWithDefaultTimeout()
rmi := podmanTest.Podman([]string{"rmi", nginx}) rmi := podmanTest.Podman([]string{"rmi", nginx})
rmi.WaitWithDefaultTimeout() rmi.WaitWithDefaultTimeout()
session := podmanTest.Podman([]string{"run", "baude/alpine_nginx:latest", "ls"}) session := podmanTest.Podman([]string{"run", "libpod/alpine_nginx:latest", "ls"})
session.WaitWithDefaultTimeout() session.WaitWithDefaultTimeout()
Expect(session.ErrorToString()).ToNot(ContainSubstring("Trying to pull")) Expect(session.ErrorToString()).ToNot(ContainSubstring("Trying to pull"))
Expect(session.ExitCode()).To(Equal(0)) Expect(session.ExitCode()).To(Equal(0))