b1d37d8cd3
This updates references to 'kubernetes' to be consistent with the proper naming reference used elsewhere ('Kubernetes'). Change-Id: Ia44f5cbc75c2fba79ac6531282e0612e62cbb9f9 Signed-off-by: Steve Wilkerson <sw5822@att.com>
25 lines
662 B
Go
25 lines
662 B
Go
package cluster
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"opendev.org/airship/airshipctl/pkg/environment"
|
|
)
|
|
|
|
var (
|
|
// ClusterUse subcommand string
|
|
ClusterUse = "cluster"
|
|
)
|
|
|
|
// NewClusterCommand returns cobra command object of the airshipctl cluster and adds it's subcommands.
|
|
func NewClusterCommand(rootSettings *environment.AirshipCTLSettings) *cobra.Command {
|
|
clusterRootCmd := &cobra.Command{
|
|
Use: ClusterUse,
|
|
// TODO: (kkalynovskyi) Add more description when more subcommands are added
|
|
Short: "Control Kubernetes cluster",
|
|
Long: "Interactions with Kubernetes cluster, such as get status, deploy initial infrastructure",
|
|
}
|
|
|
|
return clusterRootCmd
|
|
}
|