1
0
mirror of https://github.com/rancher/cli.git synced 2026-02-05 09:48:36 +01:00

Fix listing being limited to 1000

This commit is contained in:
Fabio Rauber
2020-01-31 11:27:52 -03:00
parent 428241a6d4
commit 67223fc1bc

View File

@@ -22,7 +22,7 @@ func listSystemFlag() cli.BoolFlag {
func baseListOpts() *types.ListOpts { func baseListOpts() *types.ListOpts {
return &types.ListOpts{ return &types.ListOpts{
Filters: map[string]interface{}{ Filters: map[string]interface{}{
"limit": -2, "limit": -1,
"all": true, "all": true,
}, },
} }