diff --git a/cmd/helm/doctor.go b/cmd/helm/doctor.go index 4335e6b69..6afda12ac 100644 --- a/cmd/helm/doctor.go +++ b/cmd/helm/doctor.go @@ -42,7 +42,7 @@ func doctor(c *cli.Context) error { if client.IsInstalled(runner) { format.Success("You have everything you need. Go forth my friend!") } else { - format.Warning("Looks like you don't have DM installed.\nRun: `helm install`") + format.Warning("Looks like you don't have DM installed.\nRun: `helm server install`") } return nil diff --git a/pkg/kubectl/get.go b/pkg/kubectl/get.go index 9b2e13852..e618ff6c4 100644 --- a/pkg/kubectl/get.go +++ b/pkg/kubectl/get.go @@ -34,7 +34,7 @@ func (r RealRunner) GetByKind(kind, name, ns string) (string, error) { args := []string{"get", kind} if name != "" { - args = append([]string{name}, args...) + args = append(args, name) } if ns != "" {