We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c0d315 commit 2403a84Copy full SHA for 2403a84
manifest/parse.go
@@ -43,7 +43,12 @@ func Parse(manifest string) map[string]string {
43
44
for scanner.Scan() {
45
source, content := splitSpec(scanner.Text())
46
- result[source] = content
+ //Since helm 2.5.0 the '# Source:' stanze appears multiple times per template (for each yaml doc)
47
+ if _, ok := result[source]; ok {
48
+ result[source] = result[source] + "\n" + content
49
+ } else {
50
+ result[source] = content
51
+ }
52
}
53
return result
54
0 commit comments