Conversation
Signed-off-by: Evans Mungai <evans@replicated.com>
banjoh
commented
May 5, 2026
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 0ef7018. Configure here.
Signed-off-by: Evans Mungai <evans@replicated.com>
laverya
previously approved these changes
May 5, 2026
Signed-off-by: Evans Mungai <evans@replicated.com>
laverya
approved these changes
May 5, 2026
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.

Summary
Adds two new flags to
replicated release createso a release can be built locally and inspected (or fed into another command) without uploading it to the vendor portal:--no-upload: build the release locally and skip the API upload (and any promotion). Rejects--promote/--ensure-channel/--required.--output-dir <path>: stage the release artifacts (packaged charts + collected manifests for the.replicatedconfig flow, or the raw release JSON payload for--yaml/--yaml-file/--chartflows) at the given path and preserve them after the command completes.
The two flags are orthogonal: typical usage is
--no-upload --output-dir ./outto stage artifacts for inspection, while--output-diron its own keeps a copy of what was uploaded.Online mode is still required — the command continues to resolve the app type via the API even with
--no-upload. Going fully offline is out of scope here.Also drops an unused
getToolVersionhelper incli/cmd/lint.goflagged while editing nearby code.Refs: sc-137535