mirror of
https://github.com/containers/podman.git
synced 2025-06-20 17:13:43 +08:00
Merge pull request #1746 from baude/renamebaude
replace quay.io/baude to quay.io/libpod
This commit is contained in:
@ -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"
|
||||||
)
|
)
|
||||||
|
@ -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
|
||||||
)
|
)
|
||||||
|
@ -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))
|
||||||
})
|
})
|
||||||
|
@ -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))
|
||||||
|
Reference in New Issue
Block a user