-
Notifications
You must be signed in to change notification settings - Fork 253
Revert hiveutil create-cluster's default AWS volumeType back to gp2. #1836
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
Conversation
But the consumer can always set it explicitly, right? |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: 2uasimojo, abutcher The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Yes, unless they are using clusterpools then the user would need clusterpool inventory to make a modificaton, correct? |
It's in the install-config, right? In which case they can set it as the "default" for their whole pool. (Twiddling it per pool cluster would require inventory, yes. But that's not a great use case for clusterpools or inventory. Better to use different pools.) |
Right. |
Codecov Report
@@ Coverage Diff @@
## master #1836 +/- ##
=======================================
Coverage 41.58% 41.58%
=======================================
Files 355 355
Lines 33139 33139
=======================================
Hits 13782 13782
Misses 18194 18194
Partials 1163 1163
|
|
@abutcher: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
#1806 updated the default volume type for install config MachinePools (created by
hiveutil create-cluster) to gp3. Alas, installers at and before 4.9 don't know about this type, so trying to install OpenShift at those versions results in the following error:We can effectively use the previous default volume type of gp2 which provides a baseline minimum of 100 iops and I have tested that the gp2 volumeType can be used with 4.8->4.11 installers.
The gp3 volume type performs better and is cheaper. It would be preferable to use gp3 as the default volumeType but Hive's clusterresourcebuilder can't make decisions based on the cluster version at present so I think Hive's default should use gp2 w/ no configured iops as the common denominator.
HIVE-1958