Skip to content
Snippets Groups Projects

Few updates from downstream

Merged steeve.chailloux requested to merge topic/default/from-scl into branch/default
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 14
5
@@ -9,10 +9,11 @@
type BuildCmd struct {
Args struct {
DryRun bool `short:"d" long:"dry-run" description:"if set only prints commands but do not run them"`
Keep bool `short:"k" long:"keep" description:"Keep the temporary files"`
Output string `short:"o" long:"output" description:"output directory, use \"stdout\" to print to stdout"`
Namespace string `short:"n" long:"namespace" description:"force helm namespace flag for all helm charts"`
DryRun bool `short:"d" long:"dry-run" description:"if set only prints commands but do not run them"`
Keep bool `short:"k" long:"keep" description:"Keep the temporary files"`
Output string `short:"o" long:"output" description:"output directory, use \"stdout\" to print to stdout"`
Namespace string `short:"n" long:"namespace" description:"force helm namespace flag for all helm charts"`
WithoutHydrate bool `short:"h" long:"without-hydrate" description:"don't hydrate files with beaver variables"`
}
PositionalArgs struct {
DirName string `required:"yes" positional-arg-name:"directory"`
@@ -30,7 +31,15 @@
log := LoggingOptions.Logger()
log.Debug().Str("directory", cmd.PositionalArgs.DirName).Msg("starting beaver")
config := runner.NewCmdConfig(log, ".", cmd.PositionalArgs.DirName, cmd.Args.DryRun, cmd.Args.Output, cmd.Args.Namespace)
config := runner.NewCmdConfig(
log,
".",
cmd.PositionalArgs.DirName,
cmd.Args.DryRun,
cmd.Args.WithoutHydrate,
cmd.Args.Output,
cmd.Args.Namespace,
)
path, err := os.Getwd()
if err != nil {
Loading