zot-wo-auth/pkg/cli/client/repo_cmd.go
Alexei Dodon 4e04be420e
refactor(cli): Move cmdflags package under pkg/cli/client (#1840)
Signed-off-by: Alexei Dodon <adodon@cisco.com>
2023-09-22 16:33:18 +03:00

34 lines
913 B
Go

//go:build search
// +build search
package client
import (
"github.com/spf13/cobra"
)
const prefix = "Searching... "
func NewRepoCommand(searchService SearchService) *cobra.Command {
repoCmd := &cobra.Command{
Use: "repo [config-name]",
Short: "List all repositories",
Long: `List all repositories`,
RunE: ShowSuggestionsIfUnknownCommand,
}
repoCmd.SetUsageTemplate(repoCmd.UsageTemplate() + usageFooter)
repoCmd.PersistentFlags().String(URLFlag, "",
"Specify zot server URL if config-name is not mentioned")
repoCmd.PersistentFlags().String(ConfigFlag, "",
"Specify the registry configuration to use for connection")
repoCmd.PersistentFlags().StringP(UserFlag, "u", "",
`User Credentials of zot server in "username:password" format`)
repoCmd.PersistentFlags().Bool(DebugFlag, false, "Show debug output")
repoCmd.AddCommand(NewListReposCommand(searchService))
return repoCmd
}