Skip to content

Commit 2b1d811

Browse files
Remove app-generated comments written to the files sliced. (#123)
1 parent ecdccf8 commit 2b1d811

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

app.go

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ func root() *cobra.Command {
119119
rootCommand.Flags().BoolVar(&opts.AllowEmptyNames, "allow-empty-names", false, "if enabled, resources with empty names don't produce an error when filtering")
120120
rootCommand.Flags().BoolVar(&opts.IncludeTripleDash, "include-triple-dash", false, "if enabled, the typical \"---\" YAML separator is included at the beginning of resources sliced")
121121
rootCommand.Flags().BoolVar(&opts.PruneOutputDir, "prune", false, "if enabled, the output directory will be pruned before writing the files")
122+
rootCommand.Flags().BoolVar(&opts.RemoveFileComments, "remove-comments", false, "if enabled, comments generated by the app are removed from the sliced files (but keep comments from the original file)")
122123

123124
_ = rootCommand.Flags().MarkHidden("debug")
124125
return rootCommand

slice/execute.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,10 @@ func (s *Split) store() error {
188188
s.WriteStdout("---")
189189
}
190190

191-
s.WriteStdout("# File: %s (%d bytes)", fullpath, fileLength)
191+
if !s.opts.RemoveFileComments {
192+
s.WriteStdout("# File: %s (%d bytes)", fullpath, fileLength)
193+
}
194+
192195
s.WriteStdout("%s", v.data)
193196
continue
194197

slice/split.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ type Options struct {
8484
Excluded []string
8585
StrictKubernetes bool // if true, any YAMLs that don't contain at least an "apiVersion", "kind" and "metadata.name" will be excluded
8686

87-
SortByKind bool // if true, it will sort the resources by kind
87+
SortByKind bool // if true, it will sort the resources by kind
88+
RemoveFileComments bool // if true, it will remove comments generated by the app from the generated files
8889

8990
AllowEmptyNames bool
9091
AllowEmptyKinds bool

0 commit comments

Comments
 (0)