-
Notifications
You must be signed in to change notification settings - Fork 56
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 possibility to configure the desired size of the instance volume #175
Add possibility to configure the desired size of the instance volume #175
Conversation
It possible the situation when 16Gb is not enough, to run all needed workloads, in this situatution the node will have DiskPressure condition and will start to evict pods from it. We want to prevent such situations and make instance volume size configurable.
d016338
to
32539e7
Compare
@cynepco3hahue Wouldn't this also require changes in Installer? |
@zeenix It will only affect workers, for masters I hardcoded size value under the terraform
I think if installer guys will not be versus it, I can create the installer PR as well, to be honest it is interesting what the default value for volume size under the AWS. |
|
@zeenix Can we merge it? |
I do not sure that |
@cynepco3hahue What i was saying was that currently the cpu and ram comes from the Installer through its manifest for worker nodes and you're adding new API to be able to specify volume size too so I'm a bit puzzled as to how this won't require changes in Installer? |
@zeenix Ah, now it more clear:) yes you right it will need changes under the installer as well, but as temp solution, you can generate manifests and |
I will create the installer PR on my free time:) |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: zeenix 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 |
/retest Please review the full test history for this PR and help us cut down flakes. |
@cynepco3hahue: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions 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. |
It possible the situation when 16Gb is not enough, to run all needed workloads,
in this situatution the node will have DiskPressure condition and will start
to evict pods from it. We want to prevent such situations and make instance volume
size configurable.