Esempio n. 1
0
// 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("helm", "Namespace")
	return string(o), err
}