-
Notifications
You must be signed in to change notification settings - Fork 577
CORS-4250: AWS: Add the ability to configure throughput on GP3 volumes #2480
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -205,6 +205,17 @@ type EBSBlockDeviceSpec struct { | |
| // it is not used in requests to create gp2, st1, sc1, or standard volumes. | ||
| // +optional | ||
| Iops *int64 `json:"iops,omitempty"` | ||
| // throughputMib to provision in MiB/s supported for the volume type. Not applicable to all types. | ||
| // | ||
| // This parameter is valid only for gp3 volumes. | ||
| // Valid Range: Minimum value of 125. Maximum value of 1000. | ||
| // | ||
| // When omitted, this means no opinion, and the platform is left to | ||
| // choose a reasonable default, which is subject to change over time. | ||
| // The current default is 125. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there value in adding Can we also add a link to the documentation that you have been using for reference?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We shouldn't add defaults for this API as it's a configuration API. We may want to adjust this default over time so it's better to have nothing persisted and allow this to be defaulted by the controller when acting up on the value |
||
| // | ||
| // +optional | ||
| ThroughputMib *int32 `json:"throughputMib,omitempty"` | ||
| // The size of the volume, in GiB. | ||
| // | ||
| // Constraints: 1-16384 for General Purpose SSD (gp2), 4-16384 for Provisioned | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can it have any value between 125 and 1000?