Fixes issues with delete

Signed-off-by: Taylor Thomas <taylor.thomas@microsoft.com>
This commit is contained in:
Taylor Thomas 2019-07-26 15:37:44 -06:00
parent 15fc57f8a3
commit f6116a7ca9

View file

@ -175,7 +175,7 @@ func (u *Uninstall) deleteRelease(rel *release.Release) (string, []error) {
var builder strings.Builder
for _, file := range filesToDelete {
builder.WriteString(file.Content)
builder.WriteString("\n---\n" + file.Content)
}
resources, err := u.cfg.KubeClient.Build(strings.NewReader(builder.String()))
if err != nil {