mirror of
https://github.com/containers/podman.git
synced 2025-10-15 18:23:30 +08:00
[v4.4.1-rhel] CI: stop using registry.k8s.io
It's flaky. Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:

committed by
tomsweeneyredhat

parent
cbe3e18798
commit
54326f49e4
@ -10,7 +10,7 @@ var (
|
||||
ALPINEAMD64ID = "961769676411f082461f9ef46626dd7a2d1e2b2a38e6a44364bcbecf51e66dd4"
|
||||
ALPINEARM64DIGEST = "quay.io/libpod/alpine@sha256:f270dcd11e64b85919c3bab66886e59d677cf657528ac0e4805d3c71e458e525"
|
||||
ALPINEARM64ID = "915beeae46751fc564998c79e73a1026542e945ca4f73dc841d09ccc6c2c0672"
|
||||
INFRA_IMAGE = "registry.k8s.io/pause:3.2" //nolint:revive,stylecheck
|
||||
INFRA_IMAGE = "quay.io/libpod/k8s-pause:3.5" //nolint:revive,stylecheck
|
||||
BB = "quay.io/libpod/busybox:latest"
|
||||
HEALTHCHECK_IMAGE = "quay.io/libpod/alpine_healthcheck:latest" //nolint:revive,stylecheck
|
||||
ImageCacheDir = "/tmp/podman/imagecachedir"
|
||||
|
@ -143,7 +143,7 @@ var _ = Describe("Podman images", func() {
|
||||
result := podmanTest.Podman([]string{"images", "-q", "-f", "reference=quay.io/libpod/*"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result).Should(Exit(0))
|
||||
Expect(result.OutputToStringArray()).To(HaveLen(8))
|
||||
Expect(result.OutputToStringArray()).To(HaveLen(10))
|
||||
|
||||
retalpine := podmanTest.Podman([]string{"images", "-f", "reference=*lpine*"})
|
||||
retalpine.WaitWithDefaultTimeout()
|
||||
|
@ -1818,7 +1818,7 @@ var _ = Describe("Podman play kube", func() {
|
||||
It("podman play kube should use customized infra_image", func() {
|
||||
conffile := filepath.Join(podmanTest.TempDir, "container.conf")
|
||||
|
||||
infraImage := "registry.k8s.io/pause:3.2"
|
||||
infraImage := INFRA_IMAGE
|
||||
err := os.WriteFile(conffile, []byte(fmt.Sprintf("[engine]\ninfra_image=\"%s\"\n", infraImage)), 0644)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
||||
|
@ -325,7 +325,7 @@ EOF
|
||||
|
||||
@test "podman pod create should fail when infra-name is already in use" {
|
||||
local infra_name="infra_container_$(random_string 10 | tr A-Z a-z)"
|
||||
local infra_image="registry.k8s.io/pause:3.5"
|
||||
local infra_image="quay.io/libpod/k8s-pause:3.5"
|
||||
local pod_name="$(random_string 10 | tr A-Z a-z)"
|
||||
|
||||
run_podman --noout pod create --name $pod_name --infra-name "$infra_name" --infra-image "$infra_image"
|
||||
|
Reference in New Issue
Block a user