Cluster Autoscaler Helm Chart: How To Improve Your EKS Cluster
This post explores Kubernetes autoscaling, the pros and cons of Cluster Autoscaler, and the advantages of alternative autoscaling tools.
Join the DZone community and get the full member experience.
Join For FreeKubernetes autoscaling quickly gets tricky, but developers can save time and effort thanks to all the ecosystem's tools that make configuration and management easier. One of them is Helm. Helm charts are there to help teams define, install, and upgrade complex Kubernetes applications. And the Cluster Autoscaler Helm Chart does some of the heavy lifting for you around autoscaling.
But how exactly does this Helm chart work? And are there any alternatives you could use to make cluster autoscaling even easier?
Let's Start With the Basics: What Is Cluster Autoscaler Anyway?
Along with Kubernetes Horizontal Pod Autoscaler (HPA) and Vertical Pod Autoscaler, Cluster Autoscaler is one of the autoscaling mechanisms K8s provides.
Its goal is pretty simple: Cluster Autoscaler changes the number of nodes (worker machines) in a cluster.
Note that Cluster Autoscaler can only manage nodes on a handful of supported platforms. And every platform has its own specific requirements or limitations.
The tricky part here is that the autoscaler controller operates at the infrastructure level. To do its job, it needs permission to add and delete virtual machines (if you're in the cloud).
So before you set Cluster Autoscaler to work, ensure airtight security for these credentials. Following the principle of least privilege is definitely a good idea (I'll share some more Cluster Autoscaler best practices later on).
When Should You Use Cluster Autoscaler?
There's no denying that a well-configured Cluster Autoscaler can make a massive impact on your cloud bill.
Three amazing things happen when you're able to dynamically scale the number of nodes to match the current level of utilization:
- Minimize cloud waste,
- Maximize your ROI from every dollar you spend on cloud services,
- And, at the same time, you make sure there is no downtime as your application scales.
That isn't to say that Cluster Autoscaler doesn't have its limitations.
How Does Cluster Autoscaler Work?
Cluster Autoscaler simply loops through two tasks:
- It checks for unschedulable pods (pods that don't have a node to run on),
- And it calculates whether consolidating all the currently deployed pods on a smaller number of nodes is possible or not.
Here's how Cluster Autoscaler works, step by step:
1. It Scans Clusters To Identify Any Pods That Can’t Be Scheduled on Any Existing Nodes
Where do unschedulable pods come from? The issue might arise because of inadequate CPU or memory resources or due to the pod's node taint tolerations or affinity rules failing to match an existing node.
In addition to that, it could be that you have just scaled your application, and the new pods haven't found a node to run on yet.
Step 2: Cluster Autoscaler Detects a Cluster That Contains Unschedulable Pods
Next, it checks the managed node pools of this cluster to understand whether adding a node would let the pod run. If this is true, the autoscaler adds a node to the node pool.
Step 3: Cluster Autoscaler Also Scans Nodes Across the Node Pools It Manages
If it detects a node with pods that could be rescheduled to other nodes in the cluster, the autoscaler evicts the pods, moves them to an existing node, and finally removes the spare node.
Note: When deciding to move a pod, Cluster Autoscaler considers pod priority and PodDisruptionBudgets.
If you’re looking for more guidance on how to configure and run Cluster Autoscaler, here’s a hands-on guide to EKS Cluster Autoscaler with code snippets.
Why Use the Cluster Autoscaler Helm Chart?
Let's start with Helm. Helm is a package manager that has the sole purpose of making Kubernetes application deployment easier.
Helm does that via charts. There are two ways you can use it: you can create your own chart or reuse existing Helm charts. Once you start developing a lot of tools in your K8s cluster, you'll be thankful for Helm charts.
But Helm doesn't only help you with deployment. You can also manage releases, including rollbacks, if something goes south in your deployment.
Let's get back to the original topic of this article:
The Cluster Autoscaler Helm Chart is a configuration template that allows you to deploy and manage the Cluster Autoscaler component in Kubernetes using Helm (here's the repo).
But Cluster Autoscaler Comes With Limitations
We've already started talking about maximizing utilization and minimizing cloud costs.
The problem with Cluster Autoscaler is that it doesn’t consider CPU or memory utilization in its decision-making process. All it does is check the pod’s limits and requests.
What does this mean in dollar terms? That the Autoscaler isn't able to see all the unutilized capacity requested by pods. As a result, your cluster will end up being wasteful, and your utilization efficiency will be low.
Another issue with Cluster Autoscaler is that spinning up a new node takes more time than the autoscaler gives you, as it issues a request for scaling up within a minute. This delay might easily cause performance issues while your pods are waiting for capacity.
Finally, Cluster Autoscaler doesn't take into account the changing costs of instance types, making the decisions less cost-optimized.
Is There an Alternative to the Cluster Autoscaler Helm Chart?
Certain cloud cost management tools feature autoscalers that select the best matching instance types autonomously or according to your preferences, which can be simply configured. However, it's important to note that not all tools necessarily come with this feature.
These specific platforms continuously track cloud provider inventory pricing and availability in supported cloud provider regions and zones. This information is utilized to select instance families that provide the most value.
Implementing the Cluster Autoscaler Helm Charts, when available, is more straightforward than doing all the work independently. Since these particular services are fully managed, you won't have to devote any time thinking about upgrades, scalability, and availability. Furthermore, they often come with Helm charts.
Here's an example that illustrates how closely these select autoscaling tools follow the actual resource requests in the cluster.
Such cloud management tools are compatible with Amazon EKS, Kops, and OpenShift, as well as GKE and AKS. If you're in the market for dependable autoscalers that save you money without causing any performance issues, be sure to delve into the documentation of the specific tools that offer these capabilities.
Published at DZone with permission of Kyrylo Yefimenko. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments