-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
update hpa with custom metrics #4344
Conversation
@@ -15,7 +15,7 @@ This document describes the current state of Horizontal Pod Autoscaling in Kuber | |||
|
|||
With Horizontal Pod Autoscaling, Kubernetes automatically scales the number of pods | |||
in a replication controller, deployment or replica set based on observed CPU utilization | |||
(or, with alpha support, on some other, application-provided metrics). | |||
(or, with (custom metrics)[https://github.com/kubernetes/community/blob/master/contributors/design-proposals/custom-metrics-api.md] support, on some other, application-provided metrics). |
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.
- Parenthesis are wrong - name should be in [] and link in ()
- why do you remove information about this feature being alpha?
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.
also can use url: http://git.k8s.io/community/contributors/design-proposals/custom-metrics-api.md
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.
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'm not a huge fan of linking to developer design proposals from the official user docs, and this removes information about the support level. I'm all for improved user docs, but we should add actual user docs, not links to developer proposals.
@@ -15,7 +15,7 @@ This document describes the current state of Horizontal Pod Autoscaling in Kuber | |||
|
|||
With Horizontal Pod Autoscaling, Kubernetes automatically scales the number of pods | |||
in a replication controller, deployment or replica set based on observed CPU utilization | |||
(or, with alpha support, on some other, application-provided metrics). | |||
(or, with (custom metrics)[https://github.com/kubernetes/community/blob/master/contributors/design-proposals/custom-metrics-api.md] support, on some other, application-provided metrics). |
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.
also can use url: http://git.k8s.io/community/contributors/design-proposals/custom-metrics-api.md
@zouyee Can you address the comments and merge conflict? thx |
@@ -15,7 +15,7 @@ This document describes the current state of Horizontal Pod Autoscaling in Kuber | |||
|
|||
With Horizontal Pod Autoscaling, Kubernetes automatically scales the number of pods | |||
in a replication controller, deployment or replica set based on observed CPU utilization | |||
(or, with alpha support, on some other, application-provided metrics). | |||
(or, with (custom metrics)[https://github.com/kubernetes/community/blob/master/contributors/design-proposals/custom-metrics-api.md] support, on some other, application-provided metrics). |
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.
@zouyee could you rebase this PR and fix it? |
Ping @zouyee |
ping @zouyee |
In the interest of moving this small change forward, I'm going to create a duplicate. |
update hpa with custom metrics which has been updated with v1 version
This change is