0 votes
in Kubernetes K8s by
How do you manage scaling in Kubernetes?

1 Answer

0 votes
by
This artcile answers it very well:

  https://www.replex.io/blog/kubernetes-in-production-best-practices-for-cluster-autoscaler-hpa-and-vpa

  a. hpa for pods (horizontal pod autoscaler)

  b. vpa for pods (vertical pod autoscaler)

  c. Cluster Autoscaler:

       The cluster autoscaler is a Kubernetes tool that increases or decreases the size of a Kubernetes cluster (by adding or removing nodes), based on the presence of pending pods and node utilization metrics

.
...