-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(CSI-342): get filesystem free space via API without requiring fs mount #476
Open
sergeyberezansky
wants to merge
3
commits into
dev
Choose a base branch
from
sergey/replace-mounts-with-api
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+138
−5
Conversation
This file contains 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
This was referenced Mar 10, 2025
This stack of pull requests is managed by Graphite. Learn more about stacking. |
87cdfcb
to
17cfafe
Compare
794e6f5
to
15d3499
Compare
Graphite Automations"Request reviewers once CI passes" took an action on this PR • (03/10/25)1 reviewer was added to this PR based on Sergey Berezansky's automation. |
17cfafe
to
7102b85
Compare
15d3499
to
6ca8551
Compare
Merge activity
|
6ca8551
to
299cfb2
Compare
7102b85
to
dc109c0
Compare
dc109c0
to
7c18afd
Compare
7c18afd
to
c53f25d
Compare
350def4
to
ff24efe
Compare
ff24efe
to
e551e20
Compare
This was referenced Mar 12, 2025
f6fc4ea
to
8428edc
Compare
e551e20
to
64b2cce
Compare
64b2cce
to
1a1c89e
Compare
1a1c89e
to
5a3a384
Compare
5a3a384
to
f57ffce
Compare
f57ffce
to
99545be
Compare
99545be
to
3e3c98f
Compare
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.
TL;DR
Added support for force-fresh filesystem capacity queries through the API
What changed?
ForceFresh
parameter to filesystem API calls to ensure accurate capacity reportinggetFilesystemFreeSpaceByApi
method to query filesystem capacity directly through APIgetFilesystemFreeSpace
to prioritize API-based capacity queries when possibleHow to test?
TestVolume_getFilesystemFreeSpaceByApi
andTestVolume_getFilesystemFreeSpace
passWhy make this change?
To improve the accuracy and efficiency of filesystem capacity reporting by leveraging direct API queries instead of requiring filesystem mounts. This provides more reliable capacity information and reduces operational overhead.