Skip to content

Commit eab44c5

Browse files
remove '--all' option from list releases command
1 parent c4dc1fe commit eab44c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/helm/release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
func (cli *HelmCLI) ListReleases(ctx context.Context, namespace string) (releases []string, err error) {
10-
out, err := cli.RunCmd(ctx, "list", "--namespace", namespace, "--all", "--output", "json")
10+
out, err := cli.RunCmd(ctx, "list", "--namespace", namespace, "--output", "json")
1111
if err != nil {
1212
return nil, err
1313
}

0 commit comments

Comments
 (0)