var Cmd = &cobra.Command{
Use: "versions",
Aliases: []string{"version"},
Short: "List available versions",
Long: "List versions of OpenShift that are available for creating clusters.",
Example: ` # List all OpenShift versions
rosa list versions`,
Run: run,
Args: cobra.NoArgs,
}