-
Notifications
You must be signed in to change notification settings - Fork 807
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
Document behavior wrt minimum and maximum iops #582
Conversation
Pull Request Test Coverage Report for Build 1257
💛 - Coveralls |
docs/README.md
Outdated
@@ -33,7 +33,7 @@ There are several optional parameters that could be passed into `CreateVolumeReq | |||
|-----------------------------|-----------------------------------|----------|---------------------| | |||
| "csi.storage.k8s.io/fsType" | xfs, ext2, ext3, ext4 | ext4 | File system type that will be formatted during volume creation | | |||
| "type" | io1, io2, gp2, sc1, st1,standard | gp2 | EBS volume type | | |||
| "iopsPerGB" | | | I/O operations per second per GiB. Required when io1 or io2 volume type is specified | | |||
| "iopsPerGB" | | | I/O operations per second per GiB. Required when io1 or io2 volume type is specified. If this value multiplied by the size of a requested volume produces a value below the minimum or above the maximum IOPs allowed for the volume type, AWS will return an error and volume creation will fail | |
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.
We should probably add a link to the limits: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html
Funnily enough I don't see the minimum IOPS on the chart.
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.
added a link.
Yeah it's buried below "io1 and io2 volumes can range in size from 4 GiB to 16 TiB. You can provision from 100 IOPS ..."
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: leakingtapan, wongma7 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Is this a bug fix or adding new feature? fix
What is this PR about? / Why do we need it? unlike in-tree, we error if the iops of a volume is below min or above max. Document it to avoid surprises like #575
What testing is done? N/A