Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrInvalidClusterName is an error for invalid cluster name. You should use `ValidateClusterNameOrError()` // to generate this error. ErrInvalidClusterName = errorx.CommonErrors.NewType("invalid_cluster_name", utils.ErrTraitPreCheck) )
Functions ¶
func ValidateClusterNameOrError ¶
ValidateClusterNameOrError validates a cluster name and returns error if the name is invalid.
Types ¶
type Repository ¶
type Repository interface { DownloadComponent(comp, version, target string) error VerifyComponent(comp, version, target string) error ComponentBinEntry(comp, version string) (string, error) }
Repository exports interface to tiup-cluster
func NewRepository ¶
func NewRepository(os, arch string) (Repository, error)
NewRepository returns repository
Click to show internal directories.
Click to hide internal directories.