diff options
author | Qi Wang <qiwan@redhat.com> | 2020-02-17 11:59:12 -0500 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-02-18 15:30:49 -0500 |
commit | 4c135017b228280e1dd2bd6693fdf2edb44b682a (patch) | |
tree | fa2699dc5742f54a1c7d8535df554deb2ad3cfce /cmd/podman/logout.go | |
parent | 5dacee93950a97ea14180bb86f21e462101fe5ea (diff) | |
download | podman-4c135017b228280e1dd2bd6693fdf2edb44b682a.tar.gz podman-4c135017b228280e1dd2bd6693fdf2edb44b682a.tar.bz2 podman-4c135017b228280e1dd2bd6693fdf2edb44b682a.zip |
fix mandatory parameter in login/logout
fix #5146
Insted of using a registry as mandatory parameter, this path allows podman to use the first registry from registries.conf.
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'cmd/podman/logout.go')
-rw-r--r-- | cmd/podman/logout.go | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/cmd/podman/logout.go b/cmd/podman/logout.go index 4a113b1d0..dec6822cf 100644 --- a/cmd/podman/logout.go +++ b/cmd/podman/logout.go @@ -8,7 +8,9 @@ import ( "github.com/containers/image/v5/pkg/docker/config" "github.com/containers/libpod/cmd/podman/cliconfig" "github.com/containers/libpod/cmd/podman/shared" + "github.com/containers/libpod/pkg/registries" "github.com/pkg/errors" + "github.com/sirupsen/logrus" "github.com/spf13/cobra" ) @@ -51,10 +53,16 @@ func logoutCmd(c *cliconfig.LogoutValues) error { if len(args) > 1 { return errors.Errorf("too many arguments, logout takes at most 1 argument") } + var server string if len(args) == 0 && !c.All { - return errors.Errorf("registry must be given") + registriesFromFile, err := registries.GetRegistries() + if err != nil || len(registriesFromFile) == 0 { + return errors.Errorf("no registries found in registries.conf, a registry must be provided") + } + + server = registriesFromFile[0] + logrus.Debugf("registry not specified, default to the first registry %q from registries.conf", server) } - var server string if len(args) == 1 { server = scrubServer(args[0]) } |