What did we do?
In this final lesson, we will see everything which we covered in this course.
Scaled pods and cluster nodes
We explored quite a few topics that are beyond “normal” Kubernetes usage. We learned how to scale Pods using HorizontalPodAutoscaler
. We saw that scaling Pods does not provide enough benefits if we cannot scale cluster nodes as well. We explored how to do just that using Cluster Autoscaler
. Unfortunately, it is currently available only for AWS, GKE, and AKS.
Gathered Metrics
While scaling Pods and nodes is essential, we had to gather ...