diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-06-11T19·43+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-06-11T20·09+0200 |
commit | 3cba344fbec32d4570c6b1a8758426009dfb8173 (patch) | |
tree | 1fd3014009ea32fdaac34b59a2260d81b7e462e7 /main.go | |
parent | 162b962fad4e9d4f99b865aa4d22e7c3581756e8 (diff) |
fix main: Fix 'kontemplate template' output
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/main.go b/main.go index 57dd62068b0b..5ece1183d412 100644 --- a/main.go +++ b/main.go @@ -80,10 +80,13 @@ func versionCommand() { } func templateCommand() { - _, resources := loadContextAndResources(templateFile) + _, resourceSets := loadContextAndResources(templateFile) - for _, r := range *resources { - fmt.Println(r) + for _, rs := range *resourceSets { + for _, r := range rs.Resources { + fmt.Fprintf(os.Stderr, "Rendered file %s/%s:\n", rs.Name, r.Filename) + fmt.Println(r.Rendered) + } } } @@ -163,7 +166,7 @@ func runKubectlWithResources(c *context.Context, kubectlArgs *[]string, resource } for _, r := range resourceSet.Resources { - fmt.Printf("Passing file %s/%s to kubectl", resourceSet.Name, r.Filename) + fmt.Printf("Passing file %s/%s to kubectl\n", resourceSet.Name, r.Filename) fmt.Fprintln(stdin, r.Rendered) } stdin.Close() |