-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Implement dynamic volume limits #64154
Implement dynamic volume limits #64154
Conversation
3676b0c
to
2ec50f1
Compare
/retest |
pkg/features/kube_features.go
Outdated
// | ||
// Add support for volume plugins to report node specific | ||
// volume limits | ||
DynamicVolumeThreshold utilfeature.Feature = "DynamicVolumeThreshold" |
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.
I am not sure about the feature name. DynamicVolumeLimits? AttachableVolumeLimits (= the predicate name)? There is no "Threshold" used in implementation of the feature.
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.
Limit is basically another word for threshold right? I just copied what was in specs. It should be pretty easy to rename the feature flag but I don't feel very strongly about this either ways.
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.
Since we use "Limit" in other places, I will vote for "limit". Also agree on "AttachableVolume" part
|
||
// a map of volume unique name and volume limit key | ||
newVolumes := make(map[string]string) | ||
if err := c.filterAttachableVolumes(pod.Spec.Volumes, pod.Namespace, newVolumes); err != nil { |
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.
newVolumes, err = c.filterAttachableVolumes(pod.Spec.Volumes, pod.Namespace) ?
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.
ah, now I know why it is written like that. It is because second execution of this function(line#452) adds volumes in a loop, we will have merge maps and iterate result again to do that. This saves some execution time.
pkg/volume/aws_ebs/aws_ebs.go
Outdated
|
||
instanceType, err := instances.InstanceType(context.TODO(), plugin.host.GetNodeName()) | ||
if err != nil { | ||
glog.V(3).Infof("Failed to get instance type from AWS cloud provider") |
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.
log the error
pkg/volume/plugins.go
Outdated
// volumes that can be attached to a node. | ||
type VolumePluginWithAttachLimits interface { | ||
VolumePlugin | ||
// Return number of volumes attachable on a node from the plugin |
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.
- Please add some description what is the return map - what's the key and what's value.
- I'd emphasize that it's called by kubelet and it returns limit for the node where this function is called.
pkg/volume/plugins.go
Outdated
// - storage-limits-aws-ebs | ||
// - storage-limits-csi-cinder | ||
// The key should respect character limit of ResourceName type | ||
VolumeLimitKey(spec *Spec) string |
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.
Add a note that this function is called by scheduler (or can be called by any Kubernetes component, not just kubelet).
6da2ccb
to
9a790ce
Compare
i will help review kubelet changes. /assign @derekwaynecarr |
9a790ce
to
75576df
Compare
@@ -415,6 +415,136 @@ func (c *MaxPDVolumeCountChecker) filterVolumes(volumes []v1.Volume, namespace s | |||
return nil | |||
} | |||
|
|||
func (c *MaxPDVolumeCountChecker) attachableLimitPredicate( |
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.
Add comment for this function?
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.
fixed
cc @bsalamat Could you please help take a look at the scheduler change? Thanks! |
9fb7a39
to
a5330e3
Compare
For scheduler /assign @bsalamat @aveshagarwal for api and other misc. changes /assign @liggitt |
/test pull-kubernetes-kubemark-e2e-gce-big |
efe08a7
to
b660bb3
Compare
/lgtm |
[MILESTONENOTIFIER] Milestone Pull Request: Up-to-date for process @aveshagarwal @bsalamat @derekwaynecarr @gnufied @liggitt @msau42 Pull Request Labels
|
/test pull-kubernetes-e2e-gce |
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.
Scheduler changes look good to me. Just a minor comment.
pkg/apis/core/v1/helper/helpers.go
Outdated
@@ -92,10 +92,14 @@ func IsOvercommitAllowed(name v1.ResourceName) bool { | |||
!IsHugePageResourceName(name) | |||
} | |||
|
|||
func IsStorageLimitResourceName(name v1.ResourceName) bool { |
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.
I would rename this to IsVolumeLimitResourceName
to be consistent with the rest of the code.
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.
fixed
define alpha feature and make api changes
Add tests for checking node limits
b660bb3
to
1f9404d
Compare
/lgtm |
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.
/lgtm
for scheduler changes
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: bsalamat, derekwaynecarr, gnufied, liggitt, msau42, saad-ali 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 Review the full test history for this PR. Silence the bot with an |
Automatic merge from submit-queue (batch tested with PRs 64613, 64596, 64573, 64154, 64639). If you want to cherry-pick this change to another branch, please follow the instructions here. |
return nil, fmt.Errorf("Expected Azure cloudprovider, got %s", cloud.ProviderName()) | ||
} | ||
|
||
volumeLimits := map[string]int64{ |
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.
Question: @gnufied it looks like I need to write code here to query volume limits according to azure node type , and assign new value to volumeLimits
in azure_dd.go
, right?
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.
yes that is correct. I did not know how we can get those limits for Azure Disk and hence I went with existing defaults.
This broke the node e2e alpha suite: https://k8s-testgrid.appspot.com/sig-node-kubelet#kubelet-alpha
|
@yuanying looking. ty |
Implement dynamic volume limits depending on node type.
xref kubernetes/community#2051