You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow node list to sort and filter by approval status (#3685)
When calling `node list`, it is possible to sort by various fields, but
it is not possible to sort by approval status.
Supports 'approval' (as an alias) and 'status' for `--order-by` when
calling `node list`. This also work when specifying `--order-reversed`.
```
bacalhau node list --order-by status
bacalhau node list --order-by status --order-reversed
```
In addition to sorting, it is also possible to only return nodes with a
specific status. This is also applied when filtering by labels.
```
bacalhau node list --filter-status approved
bacalhau node list --filter-status approved --labels env=devstack
```
Resolves#3682
0 commit comments