feat: added jobservice pools, workers, jobs subcommand#796
Open
NishchayRajput wants to merge 1 commit intogoharbor:mainfrom
Open
feat: added jobservice pools, workers, jobs subcommand#796NishchayRajput wants to merge 1 commit intogoharbor:mainfrom
NishchayRajput wants to merge 1 commit intogoharbor:mainfrom
Conversation
Signed-off-by: Nishchay Rajput <nishchayr@iitbhilai.ac.in>
5 tasks
Contributor
|
Can you convert this to a draft, since this would cause conflicts with the other PR #795 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Briefly describe what this pull request does and why the change is needed.
This PR adds the remaining jobservice subcommands under
harbor jobservicefor workers, worker pools, and job logs.It improves CLI parity with the Harbor Job Service dashboard by exposing worker pool listing, worker listing with pagination, and job log viewing from the CLI.
Type of Change
Please select the relevant type.
Changes
pools list.workers list,workers free,workers free-all.jobs log.Command and Flag Behavior
Commands added
harbor jobservice pools listharbor jobservice workers listharbor jobservice workers freeharbor jobservice workers free-allharbor jobservice jobs logSupported flags by command
harbor jobservice pools list--output-format json|yamlharbor jobservice workers list--pool <pool-id|all>--all--pool-all(compatibility alias)--page--page-size[POOL_ID]for backward compatibility--output-format json|yamlharbor jobservice workers free--job-id(required)harbor jobservice workers free-allharbor jobservice jobs log--job-id(required)Default behavior
workers listdefaults to all pools when no pool selector is provided.workers listdefaults to page1and page-size20.workers listpaginates in the CLI because the backend API only acceptspool_id.workers freestops the single job identified by--job-id.workers free-allstops all running jobs to free busy workers.jobs logprints the selected job log and returns a clear empty-state message when no log content is available.