Commit 1801fa00 authored by adshmh's avatar adshmh Committed by Matthew Fisher
Browse files

fix(helm): fix incorrect yaml output format of get hooks command (#4684)


Signed-off-by: default avatarArash Deshmeh <adeshmeh@ca.ibm.com>
Showing with 3 additions and 2 deletions
+3 -2
...@@ -75,7 +75,7 @@ func (g *getHooksCmd) run() error { ...@@ -75,7 +75,7 @@ func (g *getHooksCmd) run() error {
} }
for _, hook := range res.Release.Hooks { for _, hook := range res.Release.Hooks {
fmt.Fprintf(g.out, "---\n# %s\n%s", hook.Name, hook.Manifest) fmt.Fprintf(g.out, "---\n# %s\n%s\n", hook.Name, hook.Manifest)
} }
return nil return nil
} }
...@@ -17,6 +17,7 @@ limitations under the License. ...@@ -17,6 +17,7 @@ limitations under the License.
package main package main
import ( import (
"fmt"
"io" "io"
"testing" "testing"
...@@ -31,7 +32,7 @@ func TestGetHooks(t *testing.T) { ...@@ -31,7 +32,7 @@ func TestGetHooks(t *testing.T) {
{ {
name: "get hooks with release", name: "get hooks with release",
args: []string{"aeneas"}, args: []string{"aeneas"},
expected: helm.MockHookTemplate, expected: fmt.Sprintf("---\n# %s\n%s\n", "pre-install-hook", helm.MockHookTemplate),
resp: helm.ReleaseMock(&helm.MockReleaseOptions{Name: "aeneas"}), resp: helm.ReleaseMock(&helm.MockReleaseOptions{Name: "aeneas"}),
rels: []*release.Release{helm.ReleaseMock(&helm.MockReleaseOptions{Name: "aeneas"})}, rels: []*release.Release{helm.ReleaseMock(&helm.MockReleaseOptions{Name: "aeneas"})},
}, },
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment