Skip to content
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

Add rebalance job mode PoolDrain #2421

Merged
merged 3 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions SDK_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Releases

### v0.178.0 - (02/27/2024)

* Add new mode for rebalance request

### v0.177.0 - (12/15/2023)

* Add volume spec to drive resource
Expand Down
19 changes: 12 additions & 7 deletions api/api.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion api/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4427,6 +4427,8 @@ message SdkStorageRebalanceRequest {
STORAGE_REBALANCE = 0;
// VolumePlacementFix mode: scan all volumes for incorrect placement and fix them
VOLUME_PLACEMENT_FIX = 1;
// PoolDrain mode: drain all volumes & snapshots on the source pools (optionally to target pools)
POOL_DRAIN = 2;
}
}

Expand Down Expand Up @@ -5663,7 +5665,7 @@ message SdkVersion {
// SDK version major value of this specification
Major = 0;
// SDK version minor value of this specification
Minor = 177;
Minor = 178;
// SDK version patch value of this specification
Patch = 0;
}
Expand Down
7 changes: 4 additions & 3 deletions api/server/sdk/api/api.swagger.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading