mirror of
https://github.com/helm/helm.git
synced 2026-08-07 08:31:21 +00:00
Merge pull request #2051 from dmonakhov/to-pool-v1
install: Return more user-friendly response on eexists
This commit is contained in:
@@ -588,7 +588,7 @@ func (s *ReleaseServer) uniqName(start string, reuse bool) (string, error) {
|
||||
return "", errors.New("cannot re-use a name that is still in use")
|
||||
}
|
||||
|
||||
return "", fmt.Errorf("a release named %q already exists", start)
|
||||
return "", fmt.Errorf("a release named %q already exists.\nPlease run: helm ls --all %q; helm del --help", start, start)
|
||||
}
|
||||
|
||||
maxTries := 5
|
||||
|
||||
Reference in New Issue
Block a user