mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-07 16:55:15 -04:00
cli: fix/improve some user-facing strings
This commit is contained in:
parent
c7457bd942
commit
274fed0990
8 changed files with 105 additions and 106 deletions
|
@ -48,19 +48,19 @@ func NewRootCmd() *cobra.Command {
|
|||
|
||||
rootCmd.PersistentFlags().Bool("debug", false, "enable debug logging")
|
||||
rootCmd.PersistentFlags().Bool("force", false, "disable version compatibility checks - might result in corrupted clusters")
|
||||
rootCmd.PersistentFlags().String("tf-log", "NONE", "sets the Terraform log level (default \"NONE\" - no logs)")
|
||||
rootCmd.PersistentFlags().String("tf-log", "NONE", "Terraform log level")
|
||||
|
||||
rootCmd.AddCommand(cmd.NewConfigCmd())
|
||||
rootCmd.AddCommand(cmd.NewCreateCmd())
|
||||
rootCmd.AddCommand(cmd.NewInitCmd())
|
||||
rootCmd.AddCommand(cmd.NewMiniCmd())
|
||||
rootCmd.AddCommand(cmd.NewStatusCmd())
|
||||
rootCmd.AddCommand(cmd.NewVerifyCmd())
|
||||
rootCmd.AddCommand(cmd.NewUpgradeCmd())
|
||||
rootCmd.AddCommand(cmd.NewRecoverCmd())
|
||||
rootCmd.AddCommand(cmd.NewTerminateCmd())
|
||||
rootCmd.AddCommand(cmd.NewVersionCmd())
|
||||
rootCmd.AddCommand(cmd.NewIAMCmd())
|
||||
rootCmd.AddCommand(cmd.NewStatusCmd())
|
||||
rootCmd.AddCommand(cmd.NewVersionCmd())
|
||||
|
||||
return rootCmd
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue