1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
package main
import (
"os"
"github.com/containers/buildah/pkg/parse"
"github.com/containers/common/pkg/auth"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
func init() {
var (
opts = auth.LogoutOptions{
Stdout: os.Stdout,
}
logoutDescription = "Remove the cached username and password for the registry."
)
logoutCommand := &cobra.Command{
Use: "logout",
Short: "Logout of a container registry",
Long: logoutDescription,
RunE: func(cmd *cobra.Command, args []string) error {
return logoutCmd(cmd, args, &opts)
},
Example: `buildah logout quay.io`,
}
logoutCommand.SetUsageTemplate(UsageTemplate())
flags := auth.GetLogoutFlags(&opts)
flags.SetInterspersed(false)
logoutCommand.Flags().AddFlagSet(flags)
rootCmd.AddCommand(logoutCommand)
}
func logoutCmd(c *cobra.Command, args []string, iopts *auth.LogoutOptions) error {
if len(args) > 1 {
return errors.Errorf("too many arguments, logout takes at most 1 argument")
}
if len(args) == 0 && !iopts.All {
return errors.Errorf("registry must be given")
}
if err := setXDGRuntimeDir(); err != nil {
return err
}
systemContext, err := parse.SystemContextFromOptions(c)
if err != nil {
return errors.Wrapf(err, "error building system context")
}
return auth.Logout(systemContext, iopts, args)
}
|