diff options
author | Miloslav Trmač <mitr@redhat.com> | 2022-07-30 00:08:00 +0200 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2022-07-30 17:24:31 +0200 |
commit | 5a5624f8189c0e4c529e4c00d6ed66397d1db5b4 (patch) | |
tree | 3fe80d7b54a44a87884ecf917f079ced75445fe0 /hack | |
parent | 7599fde73e383824196854174847094d148b72a0 (diff) | |
download | podman-5a5624f8189c0e4c529e4c00d6ed66397d1db5b4.tar.gz podman-5a5624f8189c0e4c529e4c00d6ed66397d1db5b4.tar.bz2 podman-5a5624f8189c0e4c529e4c00d6ed66397d1db5b4.zip |
Update the registry server we test against from 2.6 to 2.8
... primarily so that it can support OCI artifacts.
2.8 already seems to exist in the repo.
This requires changing WaitContainerReady to also check
stderr (ultimately because docker/distribution was
updated to a more recent sirupsen/logrus, which logs
by default to stderr instead of stdout).
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'hack')
-rwxr-xr-x | hack/podman-registry | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/podman-registry b/hack/podman-registry index f1254966b..f1b68deaa 100755 --- a/hack/podman-registry +++ b/hack/podman-registry @@ -7,7 +7,7 @@ ME=$(basename $0) ############################################################################### # BEGIN defaults -PODMAN_REGISTRY_IMAGE=quay.io/libpod/registry:2.6 +PODMAN_REGISTRY_IMAGE=quay.io/libpod/registry:2.8 PODMAN_REGISTRY_USER= PODMAN_REGISTRY_PASS= @@ -30,7 +30,7 @@ into a local temporary directory, create an htpasswd, start the registry, and dump a series of environment variables to stdout: \$ $ME start - PODMAN_REGISTRY_IMAGE=\"docker.io/library/registry:2.6\" + PODMAN_REGISTRY_IMAGE=\"docker.io/library/registry:2.8\" PODMAN_REGISTRY_PORT=\"5050\" PODMAN_REGISTRY_USER=\"userZ3RZ\" PODMAN_REGISTRY_PASS=\"T8JVJzKrcl4p6uT\" |