You are viewing Karpenter's v0.13.2 documentation
Karpenter v0.13.2 is not the latest stable release. For up-to-date documentation, see the latest version.
Getting Started with Terraform
Karpenter automatically provisions new nodes in response to unschedulable pods. Karpenter does this by observing events within the Kubernetes cluster, and then sending commands to the underlying cloud provider.
In this example, the cluster is running on Amazon Web Services (AWS) Elastic Kubernetes Service (EKS). Karpenter is designed to be cloud provider agnostic, but currently only supports AWS. Contributions are welcomed.
This guide should take less than 1 hour to complete, and cost less than $0.25. Follow the clean-up instructions to reduce any charges.
Install
Karpenter is installed in clusters with a helm chart.
Karpenter additionally requires IAM Roles for Service Accounts (IRSA). IRSA permits Karpenter (within the cluster) to make privileged requests to AWS (as the cloud provider).
Required Utilities
Install these tools before proceeding:
- AWS CLI
kubectl
- the Kubernetes CLIterraform
- infrastructure-as-code tool made by HashiCorphelm
- the package manager for Kubernetes
Login to the AWS CLI with a user that has sufficient privileges to create a cluster.
Setting up Variables
After setting up the tools, set the following environment variables to store commonly used values.
The first thing we need to do is create our main.tf
file and place the following in it.
Create a Cluster
We’re going to use two different Terraform modules to create our cluster - one to create the VPC and another for the cluster itself. The key part of this is that we need to tag the VPC subnets that we want to use for the worker nodes.
Add the following to your main.tf
to create a VPC and EKS cluster.
At this point, go ahead and apply what we’ve done to create the VPC and EKS cluster. This may take some time.
Create the EC2 Spot Service Linked Role
This step is only necessary if this is the first time you’re using EC2 Spot in this account. More details are available here.
Configure the KarpenterNode IAM Role
The EKS module creates an IAM role for the EKS managed node group nodes. We’ll use that for Karpenter (so we don’t have to reconfigure the aws-auth ConfigMap), but we need to create an instance profile we can reference.
Add the following to your main.tf
to create the instance profile.
Go ahead and apply the changes.
Now, Karpenter can use this instance profile to launch new EC2 instances and those instances will be able to connect to your cluster.
Create the KarpenterController IAM Role
Karpenter requires permissions like launching instances, which means it needs an IAM role that grants it access. The config below will create an AWS IAM Role, attach a policy, and authorize the Service Account to assume the role using IRSA. We will create the ServiceAccount and connect it to this role during the Helm chart install.
Add the following to your main.tf
to create the IAM role for the Karpenter service account.
Since we’ve added a new module, you’ll need to run terraform init
again before applying the changes.
Install Karpenter Helm Chart
Use helm to deploy Karpenter to the cluster. We are going to use the
helm_release
Terraform resource to do the deploy and pass in the cluster
details and IAM role Karpenter needs to assume.
Add the following to your main.tf
to provision Karpenter via a Helm chart.
Since we’ve added a new provider (helm), you’ll need to run terraform init
again
before applying the changes to deploy Karpenter.
Enable Debug Logging (optional)
The global log level can be modified with the logLevel
chart value (e.g. --set logLevel=debug
) or the individual components can have their log level set with controller.logLevel
or webhook.logLevel
chart values.
Provisioner
A single Karpenter provisioner is capable of handling many different pod shapes. Karpenter makes scheduling and provisioning decisions based on pod attributes such as labels and affinity. In other words, Karpenter eliminates the need to manage many different node groups.
Create a default provisioner using the command below. This provisioner configures instances to connect to your cluster’s endpoint and discovers resources like subnets and security groups using the cluster’s name.
The ttlSecondsAfterEmpty
value configures Karpenter to terminate empty nodes.
This behavior can be disabled by leaving the value undefined.
Review the provisioner CRD for more information. For example,
ttlSecondsUntilExpired
configures Karpenter to terminate nodes when a maximum age is reached.
Add the following to your main.tf
to deploy the Karpenter provisioner.
Note: This provisioner will create capacity as long as the sum of all created capacity is less than the specified limit.
Since we’ve added a new provider (kubectl), you’ll need to run terraform init
again
before applying the changes to deploy the Karpenter provisioner.
First Use
Karpenter is now active and ready to begin provisioning nodes. Create some pods using a deployment, and watch Karpenter provision nodes in response.
Before we can start interacting with the cluster, we need to update our local kubeconfig:
Automatic Node Provisioning
This deployment uses the pause image and starts with zero replicas.
Automatic Node Termination
Now, delete the deployment. After 30 seconds (ttlSecondsAfterEmpty
),
Karpenter should terminate the now empty nodes.
Manual Node Termination
If you delete a node with kubectl, Karpenter will gracefully cordon, drain, and shutdown the corresponding instance. Under the hood, Karpenter adds a finalizer to the node object, which blocks deletion until all pods are drained and the instance is terminated. Keep in mind, this only works for nodes provisioned by Karpenter.
Cleanup
To avoid additional charges, remove the demo infrastructure from your AWS account. Since Karpenter is managing nodes outside of Terraform’s view, we need to remove the pods and node first (if you haven’t already). Once the node is removed, you can remove the rest of the infrastructure and clean up Karpenter created LaunchTemplates.