Adds `airshipctl document pull` command that will check the current manifest specified by the config and download it to the config specified target path. Change-Id: I493564c056225ff1e19f5d1aecb8c187683529ec
22 lines
588 B
Go
22 lines
588 B
Go
package document
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"opendev.org/airship/airshipctl/cmd/document/secret"
|
|
"opendev.org/airship/airshipctl/pkg/environment"
|
|
)
|
|
|
|
// NewDocumentCommand creates a new command for managing airshipctl documents
|
|
func NewDocumentCommand(rootSettings *environment.AirshipCTLSettings) *cobra.Command {
|
|
documentRootCmd := &cobra.Command{
|
|
Use: "document",
|
|
Short: "manages deployment documents",
|
|
}
|
|
|
|
documentRootCmd.AddCommand(NewDocumentPullCommand(rootSettings))
|
|
documentRootCmd.AddCommand(secret.NewSecretCommand(rootSettings))
|
|
|
|
return documentRootCmd
|
|
}
|