Kubernetes Autoscaling Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 14: | Line 14: | ||
=Vertical Pod Autoscaling= | =Vertical Pod Autoscaling= | ||
{{External|https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler}} | {{External|https://github.com/kubernetes/autoscaler/tree/master/vertical-pod-autoscaler}} | ||
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 | TODO: https://medium.com/infrastructure-adventures/vertical-pod-autoscaler-deep-dive-limitations-and-real-world-examples-9195f8422724 | ||
=<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 02:42, 7 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
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.