2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-05-12 09:14:52 -04:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2022-11-09 09:57:54 -05:00
|
|
|
// NewConfigCmd creates a new config parent command. Config needs another
|
|
|
|
// verb, and does nothing on its own.
|
2022-06-08 02:14:28 -04:00
|
|
|
func NewConfigCmd() *cobra.Command {
|
2022-05-12 09:14:52 -04:00
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "config",
|
2022-05-18 13:01:11 -04:00
|
|
|
Short: "Work with the Constellation configuration file",
|
2022-09-11 10:24:15 -04:00
|
|
|
Long: "Work with the Constellation configuration file.",
|
2022-05-12 09:14:52 -04:00
|
|
|
Args: cobra.ExactArgs(0),
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.AddCommand(newConfigGenerateCmd())
|
2022-08-01 03:37:05 -04:00
|
|
|
cmd.AddCommand(newConfigFetchMeasurementsCmd())
|
2022-10-21 06:24:18 -04:00
|
|
|
cmd.AddCommand(newConfigInstanceTypesCmd())
|
2023-02-22 03:52:47 -05:00
|
|
|
cmd.AddCommand(newConfigKubernetesVersionsCmd())
|
2023-05-03 05:11:53 -04:00
|
|
|
cmd.AddCommand(newConfigMigrateCmd())
|
2022-05-12 09:14:52 -04:00
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|