diff --git a/helm_helpers.go b/helm_helpers.go index 82ea6b9f..39236287 100644 --- a/helm_helpers.go +++ b/helm_helpers.go @@ -48,7 +48,7 @@ func getTillerReleases(tillerNS string) string { lines := strings.Split(result, "\n") for i, l := range lines { if l != "" && !strings.HasPrefix(l, "NAME") && !strings.HasSuffix(l, "NAMESPACE") { - lines[i] = strings.TrimSuffix(l, "\n") + tillerNS + lines[i] = strings.TrimSuffix(l, "\n") + " " + tillerNS } } return strings.Join(lines, "\n")