pulumi/cmd/debug_cmds.go
Matt Ellis 4f2c599485 Provide a way to opt out of default ignores
Outside of `.pulumiignore` we support a few "default" excludes that
try to push folks towards a pit of succes.

Previously, there was no way to opt out of these, which would be bad
if our  huristics caused something youto really care about to be
elided. With this change, we add an optional setting in Pulumi.yaml
that allows you to opt out of this behavior.

As part of the work, I changed .git to be one of these "default"
excludes instead of it only happening if you had a .pulumiignore file
in a directory
2017-11-22 12:13:44 -08:00

66 lines
1.8 KiB
Go

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
package cmd
import (
"io/ioutil"
"path/filepath"
"github.com/pkg/errors"
"github.com/pulumi/pulumi/pkg/util/archive"
"github.com/pulumi/pulumi/pkg/util/cmdutil"
"github.com/spf13/cobra"
)
// newArchiveCommand creates a command which just builds the archive we would ship to Pulumi.com to
// do a deployment.
func newArchiveCommand() *cobra.Command {
var forceNoDefaultIgnores bool
var forceDefaultIgnores bool
cmd := &cobra.Command{
Use: "archive <path-to-archive>",
Short: "create an archive suitable for deployment",
Args: cobra.ExactArgs(1),
Run: cmdutil.RunFunc(func(cmd *cobra.Command, args []string) error {
if forceDefaultIgnores && forceNoDefaultIgnores {
return errors.New("can't specify --no-default-ignores and --default-ignores at the same time")
}
programPath, err := getPackageFilePath()
if err != nil {
return err
}
pkg, err := getPackage()
if err != nil {
return err
}
useDeafultIgnores := pkg.UseDefaultIgnores()
if forceDefaultIgnores {
useDeafultIgnores = true
} else if forceNoDefaultIgnores {
useDeafultIgnores = false
}
// programPath is the path to the Pulumi.yaml file. Need its parent folder.
programFolder := filepath.Dir(programPath)
archiveContents, err := archive.Process(programFolder, useDeafultIgnores)
if err != nil {
return errors.Wrap(err, "creating archive")
}
return ioutil.WriteFile(args[0], archiveContents.Bytes(), 0644)
}),
}
cmd.PersistentFlags().BoolVar(
&forceNoDefaultIgnores, "--no-default-ignores", false,
"Do not use default ignores, regardless of Pulumi.yaml")
cmd.PersistentFlags().BoolVar(
&forceDefaultIgnores, "--default-ignores", false,
"Use default ignores, regardless of Pulumi.yaml")
return cmd
}