From 914a341e3a62b64f85d58e7df64a99e4600f0fc7 Mon Sep 17 00:00:00 2001 From: runseb Date: Thu, 31 Mar 2016 08:56:36 +0200 Subject: [PATCH] Use helm namespace in uninstall method --- pkg/client/uninstall.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/client/uninstall.go b/pkg/client/uninstall.go index 81e3c6373..d6a23702b 100644 --- a/pkg/client/uninstall.go +++ b/pkg/client/uninstall.go @@ -25,6 +25,6 @@ import ( // Returns the string output received from the operation, and an error if the // command failed. func Uninstall(runner kubectl.Runner) (string, error) { - o, err := runner.Delete("dm", "Namespace") + o, err := runner.Delete("helm", "Namespace") return string(o), err }