Add a flag to check blobs quickly during the pull operation#130
Merged
Add a flag to check blobs quickly during the pull operation#130
Conversation
Signed-off-by: Mike Sul <mike.sul@foundries.io>
Signed-off-by: Mike Sul <mike.sul@foundries.io>
Add a new flag to enable/disable quick check of app blobs present on a local host. By default, the quick check is disabled and blob hashes are verified. If enabled, then, only blobs presence and their sizes are checked, no hashes are verified. This flag makes the `pull` command consistent with the `check` command - check blob hashes by default, and allow a quick check through a CLI flag "--quick". Signed-off-by: Mike Sul <mike.sul@foundries.io>
Check if the specified watermark value is in the allowed range [20,99] in the `check` and `pull` commands. Set the min and max allowed values to 20 and 99, respectively; the same values we set in fioup. Signed-off-by: Mike Sul <mike.sul@foundries.io>
detsch
approved these changes
Mar 16, 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.
Add a new flag to enable/disable quick check of app blobs present on a local host. By default, the quick check is disabled and blob hashes are verified. If enabled, then, only blobs presence and their sizes are checked, no hashes are verified.
This flag makes the
pullcommand consistent with thecheckcommand - check blob hashes by default, and allow a quick check through a CLI flag "--quick".