-
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
API Server & kubectl logic for Vertical Pod Autoscaler #64286
Conversation
|
||
// Describe describes the vertical pod autoscaler object. | ||
func (d *VerticalPodAutoscalerDescriber) Describe(namespace, name string, describerSettings printers.DescriberSettings) (string, error) { | ||
vpa, err := d.client.Autoscaling().VerticalPodAutoscalers(namespace).Get(name, metav1.GetOptions{}) |
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.
Verify this actually works. If the resource is not in the preferred API group (which for autoscaling is v1) I think you have to use the external client (see cronjobs)
Probably need a test for this as well
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.
Thanks! Changed to use the external client.
a9b6d61
to
3ddac91
Compare
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. |
Adding status/approved-for-milestone as a sig autoscaling leader. |
[MILESTONENOTIFIER] Milestone Pull Request: Up-to-date for process Pull Request Labels
|
/hold This is a 6K line patch you're delivering in the middle of code freeze. When we talked about this, you said that this PR was just for tracking and wasn't going to merge. Please discuss this on #sig-release on Slack. |
these two comments are in direct opposition:
if #63797 destabilized things and requires large follow-ups like this, we should revert it asap and bring it in in 1.12 |
return "", err | ||
} | ||
|
||
return describeVerticalPodAutoscaler(internalVpa, events, d) |
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.
You only use internal vpa. Therefore you don't need external client or conversion.
verticalPodAutoscalerColumnDefinitions := []metav1beta1.TableColumnDefinition{ | ||
{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]}, | ||
{Name: "Selector", Type: "string", Description: autoscalingv2beta1.VerticalPodAutoscalerSpec{}.SwaggerDoc()["selector"]}, | ||
{Name: "UpdateMode", Type: "string", Description: autoscalingv2beta1.PodUpdatePolicy{}.SwaggerDoc()["updateMode"]}, |
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.
Selector, and even UpdateMode could be priority 1 (omitted by default, shown when -o wide
).
kubectl get
is useful when it prints the current status of a resource. Is there something in vpa status that you can add here? For example, deployment printer prints its desired and current replicas; pod printer prints its current ready containers and restart counts. A column doesn't need to map to a status field, it could be aggregated information you gather from several fields.
As discussed on slack we agreed to postpone it to 1.12. As of the comment of direct opposition - iVPA follows the same model as Ingress. The API itself is official, however various parties may provide slightly different implementation that fits to their needs. So it is both core and independent at the same time. Sorry if it wasn't crystal clear. The exact communication with #63797 was that there will be a follow up PR. @jberkus understood that the #63797 is that follow up PR. The miscommunication was resolved on slack. |
Automatic merge from submit-queue (batch tested with PRs 64836, 64890). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Revert: Add Vertical Pod Autoscaler to autoscaling/v2beta1 Reverts #63797 per [discussion](https://kubernetes.slack.com/archives/C09R1LV8S/p1528400528000615) with @jberkus and @mwielgus The scope of the follow-ups required in #64286 was not well understood when the API PR was merged, and we are now past code freeze for 1.11 This can be reopened against 1.12 ```release-note NONE ```
Automatic merge from submit-queue (batch tested with PRs 64836, 64890). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Revert: Add Vertical Pod Autoscaler to autoscaling/v2beta1 Reverts kubernetes/kubernetes#63797 per [discussion](https://kubernetes.slack.com/archives/C09R1LV8S/p1528400528000615) with @jberkus and @mwielgus The scope of the follow-ups required in kubernetes/kubernetes#64286 was not well understood when the API PR was merged, and we are now past code freeze for 1.11 This can be reopened against 1.12 ```release-note NONE ``` Kubernetes-commit: 169df7434155cbbc22f1532cba8e0a9588e29ad8
Automatic merge from submit-queue (batch tested with PRs 64836, 64890). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Revert: Add Vertical Pod Autoscaler to autoscaling/v2beta1 Reverts kubernetes/kubernetes#63797 per [discussion](https://kubernetes.slack.com/archives/C09R1LV8S/p1528400528000615) with @jberkus and @mwielgus The scope of the follow-ups required in kubernetes/kubernetes#64286 was not well understood when the API PR was merged, and we are now past code freeze for 1.11 This can be reopened against 1.12 ```release-note NONE ``` Kubernetes-commit: 169df7434155cbbc22f1532cba8e0a9588e29ad8
@kgrygiel: PR needs rebase. 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. |
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. |
This is no longer needed. Closing. |
What this PR does / why we need it:
Adds API Server and kubectl logic to handle Vertical Pod Autoscalers.
Special notes for your reviewer:
This is follow up to PR #63797 that adds VPA to the autoscaling v2beta1 API.
/cc @mwielgus
/cc @wojtek-t
Release note: