Login
Remember
Register
Ask a Question
How do you manage scaling in Kubernetes?
0
votes
asked
Aug 3, 2023
in
Kubernetes K8s
by
SakshiSharma
How do you manage scaling in Kubernetes?
kubernetes-scaling
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 3, 2023
by
SakshiSharma
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
.
...