diff options
author | Qi Wang <qiwan@redhat.com> | 2019-08-06 11:22:18 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2019-08-09 12:27:32 -0400 |
commit | cfdf891552704dce8020aa313f61bf85f5a6b072 (patch) | |
tree | 59e20810281dc7e1ec69910dc289081c769b9524 /test | |
parent | 66ae8ec037f8e30d62bbb5f0213b7e35cafb4408 (diff) | |
download | podman-cfdf891552704dce8020aa313f61bf85f5a6b072.tar.gz podman-cfdf891552704dce8020aa313f61bf85f5a6b072.tar.bz2 podman-cfdf891552704dce8020aa313f61bf85f5a6b072.zip |
fix create&run getting --authfile from cli
Add flag `--authfile` to create and run so Podman can read authfile path from not only environemnt variable REGISTRY_AUTH_FILE but also CLI
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/login_logout_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/e2e/login_logout_test.go b/test/e2e/login_logout_test.go index d64340248..4d476e05f 100644 --- a/test/e2e/login_logout_test.go +++ b/test/e2e/login_logout_test.go @@ -127,6 +127,10 @@ var _ = Describe("Podman login and logout", func() { session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) + session = podmanTest.Podman([]string{"run", "--authfile", authFile, testImg}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + session = podmanTest.Podman([]string{"logout", "--authfile", authFile, server}) }) |