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
Enhance the workload listing feature to include information about queued jobs from Kueue.
User Stories
As a user, I want to:
See information about both running and queued jobs in the workload list
Requirements
Extend the /jobs/list backend API to query Kueue custom resources
Include queued job information in the API response
Update the jobby list CLI command to display queued job information
Add filtering options to include/exclude queued jobs in both the API and CLI
Example Usage
API: GET /jobs/list?include_queued=true
CLI: jobby list --include-queued
Note
This enhancement should be implemented in a way that maintains backwards compatibility with the basic workload listing functionality. Consider adding a new parameter to the /jobs/list endpoint and a new flag to the CLI command to optionally include queued jobs.
The text was updated successfully, but these errors were encountered:
This is addressed by #82 with client side filtering.
If we want server side filtering, then we should describe them in a new story and decide if we want to also encompass not only filtering by queued/non-queued but also the other possible states (pending, executing, succeeded, failed, inadmissible) , namespaces, date ranges, and priorities.
Integrate Kueue Information into Workload Listing
Objective
Enhance the workload listing feature to include information about queued jobs from Kueue.
User Stories
As a user, I want to:
Requirements
/jobs/list
backend API to query Kueue custom resourcesjobby list
CLI command to display queued job informationExample Usage
API:
GET /jobs/list?include_queued=true
CLI:
jobby list --include-queued
Note
This enhancement should be implemented in a way that maintains backwards compatibility with the basic workload listing functionality. Consider adding a new parameter to the
/jobs/list
endpoint and a new flag to the CLI command to optionally include queued jobs.The text was updated successfully, but these errors were encountered: