constellation/cli/internal/cmd/create.go

220 lines
7.4 KiB
Go
Raw Normal View History

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package cmd
import (
"errors"
"fmt"
"io/fs"
2022-09-21 11:47:57 +00:00
"github.com/edgelesssys/constellation/v2/cli/internal/cloudcmd"
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
"github.com/edgelesssys/constellation/v2/internal/constants"
"github.com/edgelesssys/constellation/v2/internal/file"
"github.com/edgelesssys/constellation/v2/internal/state"
2022-04-13 11:01:38 +00:00
"github.com/spf13/afero"
"github.com/spf13/cobra"
)
2022-06-08 06:14:28 +00:00
// NewCreateCmd returns a new cobra.Command for the create command.
func NewCreateCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "create",
Short: "Create instances on a cloud platform for your Constellation cluster",
2022-05-04 07:13:46 +00:00
Long: "Create instances on a cloud platform for your Constellation cluster.",
2022-04-13 11:01:38 +00:00
Args: cobra.MatchAll(
cobra.ExactArgs(0),
2022-04-13 11:01:38 +00:00
),
RunE: runCreate,
}
2022-05-09 15:02:47 +00:00
cmd.Flags().String("name", "constell", "create the cluster with the specified name")
cmd.Flags().BoolP("yes", "y", false, "create the cluster without further confirmation")
2022-05-04 16:41:24 +00:00
cmd.Flags().IntP("control-plane-nodes", "c", 0, "number of control-plane nodes (required)")
must(cobra.MarkFlagRequired(cmd.Flags(), "control-plane-nodes"))
2022-05-04 16:41:24 +00:00
cmd.Flags().IntP("worker-nodes", "w", 0, "number of worker nodes (required)")
must(cobra.MarkFlagRequired(cmd.Flags(), "worker-nodes"))
return cmd
}
2022-04-13 11:01:38 +00:00
func runCreate(cmd *cobra.Command, args []string) error {
fileHandler := file.NewHandler(afero.NewOsFs())
creator := cloudcmd.NewCreator(cmd.OutOrStdout())
return create(cmd, creator, fileHandler)
2022-04-13 11:01:38 +00:00
}
func create(cmd *cobra.Command, creator cloudCreator, fileHandler file.Handler) (retErr error) {
2022-08-31 15:35:33 +00:00
flags, err := parseCreateFlags(cmd)
2022-04-13 11:01:38 +00:00
if err != nil {
return err
}
if err := checkDirClean(fileHandler); err != nil {
return err
}
config, err := readConfig(cmd.OutOrStdout(), fileHandler, flags.configPath)
2022-04-13 11:01:38 +00:00
if err != nil {
return fmt.Errorf("reading and validating config: %w", err)
2022-04-13 11:01:38 +00:00
}
2022-09-06 11:05:49 +00:00
var printedAWarning bool
if config.IsDebugImage() {
cmd.Println("Configured image doesn't look like a released production image. Double check image before deploying to production.")
2022-09-06 11:05:49 +00:00
printedAWarning = true
}
if config.IsDebugCluster() {
cmd.Println("WARNING: Creating a debug cluster. This cluster is not secure and should only be used for debugging purposes.")
cmd.Println("DO NOT USE THIS CLUSTER IN PRODUCTION.")
printedAWarning = true
}
if config.IsAzureNonCVM() {
cmd.Println("Disabling Confidential VMs is insecure. Use only for evaluation purposes.")
2022-09-06 11:05:49 +00:00
printedAWarning = true
if config.EnforcesIdKeyDigest() {
cmd.Println("Your config asks for enforcing the idkeydigest. This is only available on Confidential VMs. It will not be enforced.")
}
}
2022-09-06 11:05:49 +00:00
// Print an extra new line later to separate warnings from the prompt message of the create command
if printedAWarning {
cmd.Println("")
}
provider := config.GetProvider()
2022-08-31 15:35:33 +00:00
var instanceType string
switch provider {
case cloudprovider.Azure:
instanceType = config.Provider.Azure.InstanceType
case cloudprovider.GCP:
instanceType = config.Provider.GCP.InstanceType
}
2022-04-13 11:01:38 +00:00
if !flags.yes {
// Ask user to confirm action.
2022-05-04 07:13:46 +00:00
cmd.Printf("The following Constellation cluster will be created:\n")
2022-08-31 15:35:33 +00:00
cmd.Printf("%d control-planes nodes of type %s will be created.\n", flags.controllerCount, instanceType)
cmd.Printf("%d worker nodes of type %s will be created.\n", flags.workerCount, instanceType)
2022-05-04 07:13:46 +00:00
ok, err := askToConfirm(cmd, "Do you want to create this cluster?")
2022-04-13 11:01:38 +00:00
if err != nil {
return err
}
if !ok {
2022-05-04 07:13:46 +00:00
cmd.Println("The creation of the cluster was aborted.")
2022-04-13 11:01:38 +00:00
return nil
}
}
2022-08-31 15:35:33 +00:00
state, err := creator.Create(cmd.Context(), provider, config, flags.name, instanceType, flags.controllerCount, flags.workerCount)
2022-04-13 11:01:38 +00:00
if err != nil {
return err
}
if err := fileHandler.WriteJSON(constants.StateFilename, state, file.OptNone); err != nil {
return err
}
2022-07-29 08:01:10 +00:00
if err := writeIPtoIDFile(fileHandler, state); err != nil {
return err
}
2022-05-04 07:13:46 +00:00
cmd.Println("Your Constellation cluster was created successfully.")
2022-04-13 11:01:38 +00:00
return nil
}
// parseCreateFlags parses the flags of the create command.
2022-08-31 15:35:33 +00:00
func parseCreateFlags(cmd *cobra.Command) (createFlags, error) {
controllerCount, err := cmd.Flags().GetInt("control-plane-nodes")
if err != nil {
return createFlags{}, fmt.Errorf("parsing number of control-plane nodes: %w", err)
}
if controllerCount < constants.MinControllerCount {
return createFlags{}, fmt.Errorf("number of control-plane nodes must be at least %d", constants.MinControllerCount)
}
workerCount, err := cmd.Flags().GetInt("worker-nodes")
if err != nil {
return createFlags{}, fmt.Errorf("parsing number of worker nodes: %w", err)
}
if workerCount < constants.MinWorkerCount {
return createFlags{}, fmt.Errorf("number of worker nodes must be at least %d", constants.MinWorkerCount)
}
2022-04-13 11:01:38 +00:00
name, err := cmd.Flags().GetString("name")
if err != nil {
return createFlags{}, fmt.Errorf("parsing name argument: %w", err)
2022-04-13 11:01:38 +00:00
}
if len(name) > constants.ConstellationNameLength {
2022-04-13 11:01:38 +00:00
return createFlags{}, fmt.Errorf(
2022-05-04 07:13:46 +00:00
"name for Constellation cluster too long, maximum length is %d, got %d: %s",
constants.ConstellationNameLength, len(name), name,
2022-04-13 11:01:38 +00:00
)
}
2022-04-13 11:01:38 +00:00
yes, err := cmd.Flags().GetBool("yes")
if err != nil {
return createFlags{}, fmt.Errorf("%w; Set '-yes' without a value to automatically confirm", err)
2022-04-13 11:01:38 +00:00
}
configPath, err := cmd.Flags().GetString("config")
2022-04-13 11:01:38 +00:00
if err != nil {
return createFlags{}, fmt.Errorf("parsing config path argument: %w", err)
2022-04-13 11:01:38 +00:00
}
return createFlags{
controllerCount: controllerCount,
workerCount: workerCount,
name: name,
configPath: configPath,
yes: yes,
2022-04-13 11:01:38 +00:00
}, nil
}
// createFlags contains the parsed flags of the create command.
type createFlags struct {
controllerCount int
workerCount int
name string
configPath string
yes bool
}
// checkDirClean checks if files of a previous Constellation are left in the current working dir.
2022-04-06 08:36:58 +00:00
func checkDirClean(fileHandler file.Handler) error {
if _, err := fileHandler.Stat(constants.StateFilename); !errors.Is(err, fs.ErrNotExist) {
return fmt.Errorf("file '%s' already exists in working directory, run 'constellation terminate' before creating a new one", constants.StateFilename)
}
2022-04-06 08:36:58 +00:00
if _, err := fileHandler.Stat(constants.AdminConfFilename); !errors.Is(err, fs.ErrNotExist) {
return fmt.Errorf("file '%s' already exists in working directory, run 'constellation terminate' before creating a new one", constants.AdminConfFilename)
}
2022-04-06 08:36:58 +00:00
if _, err := fileHandler.Stat(constants.MasterSecretFilename); !errors.Is(err, fs.ErrNotExist) {
return fmt.Errorf("file '%s' already exists in working directory. Constellation won't overwrite previous master secrets. Move it somewhere or delete it before creating a new cluster", constants.MasterSecretFilename)
}
2022-07-29 08:01:10 +00:00
if _, err := fileHandler.Stat(constants.ClusterIDsFileName); !errors.Is(err, fs.ErrNotExist) {
return fmt.Errorf("file '%s' already exists in working directory. Constellation won't overwrite previous cluster IDs. Move it somewhere or delete it before creating a new cluster", constants.ClusterIDsFileName)
}
return nil
}
2022-04-13 11:01:38 +00:00
2022-07-29 08:01:10 +00:00
func writeIPtoIDFile(fileHandler file.Handler, state state.ConstellationState) error {
2022-08-01 14:51:34 +00:00
ip := state.LoadBalancerIP
2022-07-29 08:01:10 +00:00
if ip == "" {
return fmt.Errorf("bootstrapper ip not found")
}
idFile := clusterIDsFile{IP: ip}
return fileHandler.WriteJSON(constants.ClusterIDsFileName, idFile, file.OptNone)
}
2022-06-08 06:14:28 +00:00
func must(err error) {
if err != nil {
panic(err)
}
}