helmfile/pkg/config/build.go

13 lines
278 B
Go

package config
// BuildOptions is the options for the build command
type BuildOptions struct {
// EmbedValues is true if the values should be embedded
EmbedValues bool
}
// NewBuildOptions creates a new Apply
func NewBuildOptions() *BuildOptions {
return &BuildOptions{}
}