-
Notifications
You must be signed in to change notification settings - Fork 4.2k
VPA: Implement startup CPU boost support #8413
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: experimental-cpu-boost
Are you sure you want to change the base?
VPA: Implement startup CPU boost support #8413
Conversation
Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it. 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-sigs/prow repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: kamarabbas99 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Hi @kamarabbas99. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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-sigs/prow repository. |
/cc laoj2 |
688c3ed
to
6ad3a0a
Compare
/ok-to-test |
I got a suggestion to split this into multiple PRs, it will make the review process easier. First PR being #8417 |
// PodReady returns true if the pod is ready. | ||
func PodReady(pod *core.Pod) bool { | ||
for _, cond := range pod.Status.Conditions { | ||
if cond.Type == core.PodReady && cond.Status == core.ConditionTrue { | ||
return true | ||
} | ||
} | ||
return false | ||
} |
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.
Does it make sense to use https://pkg.go.dev/k8s.io/kubernetes/pkg/api/v1/pod#IsPodReadyConditionTrue, rather than writing it from scratch?
/uncc omerap12 voelzmo laoj2 |
Ah sorry! |
What type of PR is this?
/kind feature
/kind api-change
What this PR does / why we need it:
This PR introduces the CPU Startup Boost feature to the Vertical Pod Autoscaler.
This feature addresses the common problem of slow startup times for applications (e.g., Java workloads) that have high CPU requirements during initialization. https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler/enhancements/7862-cpu-startup-boost
The key changes include:
duration.
scale the CPU back down to the VPA's current recommendation.
Which issue(s) this PR fixes:
#7862
Fixes #
Special notes for your reviewer:
Merging this to an experimental branch first.
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: