Kubernetes Autoscaling Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
=Vertical Pod Autoscaling= | =Vertical Pod Autoscaling= | ||
Vertical scaling of a pod mens increasing its containers' resource requests and limits. This can be currently done only at creation time, not while the pod is running. | Vertical scaling of a pod mens increasing its containers' resource requests and limits. This can be currently done only at creation time, not while the pod is running. | ||
TODO: https://medium.com/infrastructure-adventures/vertical-pod-autoscaler-deep-dive-limitations-and-real-world-examples-9195f8422724 | <font color=darkgray> | ||
TODO | |||
* https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler | |||
* https://medium.com/infrastructure-adventures/vertical-pod-autoscaler-deep-dive-limitations-and-real-world-examples-9195f8422724 | |||
</font> | |||
=<span id='Cluster_Autoscaler'></span><span id='Horizontal_Cluster_Autoscaling'></span><span id='Horizontal_Node_Autoscaling'></span>Horizontal Node Autoscaling (Cluster Autoscaler)= | =<span id='Cluster_Autoscaler'></span><span id='Horizontal_Cluster_Autoscaling'></span><span id='Horizontal_Node_Autoscaling'></span>Horizontal Node Autoscaling (Cluster Autoscaler)= | ||
{{External|https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler}} | {{External|https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler}} |
Revision as of 22:42, 12 October 2020
External
- https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler
- https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
- https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler
Internal
Horizontal Pod Autoscaling
Horizontal pod autoscaling is the automatic increase or decrease the number of pod replicas managed by a scalable higher-level controller. The scaling is performed by a horizontal controller and it is controlled by a horizontal pod autoscaler Kubernetes API resource. More details:
Vertical Pod Autoscaling
Vertical scaling of a pod mens increasing its containers' resource requests and limits. This can be currently done only at creation time, not while the pod is running.
TODO
- https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler
- https://medium.com/infrastructure-adventures/vertical-pod-autoscaler-deep-dive-limitations-and-real-world-examples-9195f8422724