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.
18 lines
317 B
18 lines
317 B
package main
|
|
|
|
import (
|
|
"github.com/deis/helm-dm/dm"
|
|
"github.com/deis/helm-dm/format"
|
|
"github.com/deis/helm-dm/kubectl"
|
|
)
|
|
|
|
func install() error {
|
|
runner := &kubectl.PrintRunner{}
|
|
out, err := dm.Install(runner)
|
|
if err != nil {
|
|
format.Error("Error installing: %s %s", out, err)
|
|
}
|
|
format.Msg(out)
|
|
return nil
|
|
}
|