From 20c4d29295f175037e4aa8ff94ee4493c23f8b90 Mon Sep 17 00:00:00 2001 From: Abhilash Gnan Date: Thu, 4 Apr 2019 20:58:06 +0200 Subject: [PATCH] fix docs for helm list Signed-off-by: Abhilash Gnan --- cmd/helm/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/list.go b/cmd/helm/list.go index cd56cff79..839e733c3 100644 --- a/cmd/helm/list.go +++ b/cmd/helm/list.go @@ -87,7 +87,7 @@ func newListCmd(cfg *action.Configuration, out io.Writer) *cobra.Command { f.BoolVarP(&client.Short, "short", "q", false, "output short (quiet) listing format") f.BoolVarP(&client.ByDate, "date", "d", false, "sort by release date") f.BoolVarP(&client.SortReverse, "reverse", "r", false, "reverse the sort order") - f.BoolVarP(&client.All, "all", "a", false, "show all releases, not just the ones marked deployed") + f.BoolVarP(&client.All, "all", "a", false, "show all releases, not just the ones marked deployed or failed") f.BoolVar(&client.Uninstalled, "uninstalled", false, "show uninstalled releases") f.BoolVar(&client.Superseded, "superseded", false, "show superseded releases") f.BoolVar(&client.Uninstalling, "uninstalling", false, "show releases that are currently being uninstalled")