Skip to content

Commit

Permalink
WIP stdout visible for helm
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Hehejik <thehejik@suse.com>
  • Loading branch information
thehejik committed Oct 25, 2024
1 parent bab5046 commit fcf0056
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion hosted/preparation/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ var (
*/
func RunHelmCmdWithRetry(s ...string) {
Eventually(func() error {
return kubectl.RunHelmBinaryWithCustomErr(s...)
output, err := kubectl.RunHelmBinaryWithOutput(s...)
GinkgoWriter.Write([]byte(output))
if err != nil {
return err
}
return nil
}, tools.SetTimeout(2*time.Minute), 20*time.Second).Should(Not(HaveOccurred()))
}

Expand Down

0 comments on commit fcf0056

Please sign in to comment.