mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
342 B
15 lines
342 B
9 years ago
|
package dm
|
||
|
|
||
|
import (
|
||
|
"github.com/deis/helm-dm/kubectl"
|
||
|
)
|
||
|
|
||
|
// uninstall uses kubectl to uninstall the base DM.
|
||
|
//
|
||
|
// 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", "dm")
|
||
|
return string(o), err
|
||
|
}
|