2022-10-07 03:38:43 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2023-10-09 07:04:29 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/state"
|
2022-10-07 03:38:43 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/file"
|
|
|
|
"github.com/spf13/afero"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func newMiniDownCmd() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "down",
|
2022-10-14 04:48:20 -04:00
|
|
|
Short: "Destroy a MiniConstellation cluster",
|
|
|
|
Long: "Destroy a MiniConstellation cluster.",
|
2022-10-07 03:38:43 -04:00
|
|
|
Args: cobra.ExactArgs(0),
|
|
|
|
RunE: runDown,
|
|
|
|
}
|
2022-11-08 12:32:59 -05:00
|
|
|
cmd.Flags().BoolP("yes", "y", false, "terminate the cluster without further confirmation")
|
2022-10-07 03:38:43 -04:00
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
func runDown(cmd *cobra.Command, args []string) error {
|
|
|
|
if err := checkForMiniCluster(file.NewHandler(afero.NewOsFs())); err != nil {
|
|
|
|
return fmt.Errorf("failed to destroy cluster: %w. Are you in the correct working directory?", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err := runTerminate(cmd, args)
|
|
|
|
if removeErr := os.Remove(constants.MasterSecretFilename); removeErr != nil && !os.IsNotExist(removeErr) {
|
2023-02-07 06:56:25 -05:00
|
|
|
err = errors.Join(err, removeErr)
|
2022-10-07 03:38:43 -04:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkForMiniCluster(fileHandler file.Handler) error {
|
2023-10-09 07:04:29 -04:00
|
|
|
stateFile, err := state.ReadFromFile(fileHandler, constants.StateFilename)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("reading state file: %w", err)
|
2022-10-07 03:38:43 -04:00
|
|
|
}
|
2023-10-09 07:04:29 -04:00
|
|
|
|
|
|
|
if stateFile.Infrastructure.UID != constants.MiniConstellationUID {
|
2022-10-14 04:48:20 -04:00
|
|
|
return errors.New("cluster is not a MiniConstellation cluster")
|
2022-10-07 03:38:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|