E2E Tests: change the registry for the search test to avoid authentication

The current test uses registry.redhat.io which does not support unauthenticated access
Replace the registry with registry.access.redhat.com which does

Signed-off-by: Ygal Blum <ygal.blum@gmail.com>
This commit is contained in:
Ygal Blum
2022-11-21 10:33:20 +02:00
parent 3f76f29adb
commit dd4d212b0a

View File

@ -454,7 +454,7 @@ registries = ['{{.Host}}:{{.Port}}']`
})
It("podman search with wildcards", func() {
search := podmanTest.Podman([]string{"search", "registry.redhat.io/*openshift*"})
search := podmanTest.Podman([]string{"search", "registry.access.redhat.com/*openshift*"})
search.WaitWithDefaultTimeout()
Expect(search).Should(Exit(0))
Expect(len(search.OutputToStringArray())).To(BeNumerically(">", 1))