summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2022-07-30 17:21:15 +0200
committerMiloslav Trmač <mitr@redhat.com>2022-08-02 16:52:56 +0200
commit52db7637378881479137136395d9d9ede58a3f8a (patch)
tree96b7dce041fafe6ed14a2430602b2ee7f6431676 /test/e2e
parent2303632250168b0d856d4fcfe0b5d1a77ca8b873 (diff)
downloadpodman-52db7637378881479137136395d9d9ede58a3f8a.tar.gz
podman-52db7637378881479137136395d9d9ede58a3f8a.tar.bz2
podman-52db7637378881479137136395d9d9ede58a3f8a.zip
Use existing REGISTRY_IMAGE variables in more places
... instead of hard-coding a copy of the value. Notably this makes hack/podman_registry actually support the documented -i option. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/login_logout_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/login_logout_test.go b/test/e2e/login_logout_test.go
index efefbb113..60c53e27e 100644
--- a/test/e2e/login_logout_test.go
+++ b/test/e2e/login_logout_test.go
@@ -85,7 +85,7 @@ var _ = Describe("Podman login and logout", func() {
strings.Join([]string{authPath, "/auth:Z"}, ":"), "-e", "REGISTRY_AUTH=htpasswd", "-e",
"REGISTRY_AUTH_HTPASSWD_REALM=Registry Realm", "-e", "REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd",
"-v", strings.Join([]string{certPath, "/certs:Z"}, ":"), "-e", "REGISTRY_HTTP_TLS_CERTIFICATE=/certs/domain.crt",
- "-e", "REGISTRY_HTTP_TLS_KEY=/certs/domain.key", "registry:2.6"})
+ "-e", "REGISTRY_HTTP_TLS_KEY=/certs/domain.key", REGISTRY_IMAGE})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))
@@ -249,7 +249,7 @@ var _ = Describe("Podman login and logout", func() {
strings.Join([]string{authPath, "/auth:z"}, ":"), "-e", "REGISTRY_AUTH=htpasswd", "-e",
"REGISTRY_AUTH_HTPASSWD_REALM=Registry Realm", "-e", "REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd",
"-v", strings.Join([]string{certPath, "/certs:z"}, ":"), "-e", "REGISTRY_HTTP_TLS_CERTIFICATE=/certs/domain.crt",
- "-e", "REGISTRY_HTTP_TLS_KEY=/certs/domain.key", "registry:2.6"})
+ "-e", "REGISTRY_HTTP_TLS_KEY=/certs/domain.key", REGISTRY_IMAGE})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))