Skip to content
Snippets Groups Projects
build.go 1.11 KiB
Newer Older
steeve.chailloux's avatar
steeve.chailloux committed
package cmd

import (
	"os"
	"fmt"

	"orus.io/cloudcrane/beaver/runner"
)
Florent Aide's avatar
Florent Aide committed

steeve.chailloux's avatar
steeve.chailloux committed
type BuildCmd struct {
	Args struct {
		DryRun bool `short:"d" long:"dry-run" description:"if set only prints commands but do not run them"`
	}
	PositionnalArgs struct {
steeve.chailloux's avatar
steeve.chailloux committed
		Namespace string `required:"yes" positional-arg-name:"namespace"`
	} `positional-args:"yes"`
}

// NewBuildCmd ...
func NewBuildCmd() *BuildCmd {

	cmd := BuildCmd{}

	return &cmd
}

// Execute ...
func (cmd *BuildCmd) Execute([]string) error {
	Logger.Info().Str("namespace", cmd.PositionnalArgs.Namespace).Msg("starting beaver")

	tmpDir, err := os.MkdirTemp(os.TempDir(), "beaver-")
	if err != nil {
		return fmt.Errorf("failed to create temp dir: %w", err)
	}

	config := runner.NewCmdConfig(Logger, ".", cmd.PositionnalArgs.Namespace, cmd.Args.DryRun)

	if err := config.Initialize(tmpDir); err != nil {
Florent Aide's avatar
Florent Aide committed
		Logger.Err(err).Msg("failed to prepare config")
	}
	r := runner.NewRunner(config)
	return r.Build(tmpDir)
steeve.chailloux's avatar
steeve.chailloux committed
}

func init() {
	buildCmd := NewBuildCmd()
	_, err := parser.AddCommand("build", "Build new environment", "", buildCmd)
	if err != nil {
		Logger.Fatal().Msg(err.Error())
	}
}