Deprovisioning
Control Flow
Karpenter sets a Kubernetes finalizer on each node it provisions. The finalizer blocks deletion of the node object while the Termination Controller cordons and drains the node, before removing the underlying machine. Deprovisioning is triggered by the Deprovisioning Controller, by the user through manual deprovisioning, or through an external system that sends a delete request to the node object.
Deprovisioning Controller
Karpenter automatically discovers deprovisionable nodes and spins up replacements when needed. Karpenter deprovisions nodes by executing one automatic method at a time, in order of Expiration, Drift, Emptiness, and then Consolidation. Each method varies slightly but they all follow the standard deprovisioning process:
- Identify a list of prioritized candidates for the deprovisioning method.
- If there are pods that cannot be evicted on the node, Karpenter will ignore the node and try deprovisioning it later.
- If there are no deprovisionable nodes, continue to the next deprovisioning method.
- For each deprovisionable node, execute a scheduling simulation with the pods on the node to find if any replacement nodes are needed.
- Cordon the node(s) to prevent pods from scheduling to it.
- Pre-spin any replacement nodes needed as calculated in Step (2), and wait for them to become ready.
- If a replacement node fails to initialize, un-cordon the node(s), and restart from Step (1), starting at the first deprovisioning method again.
- Delete the node(s) and wait for the Termination Controller to gracefully shutdown the node(s).
- Once the Termination Controller terminates the node, go back to Step (1), starting at the the first deprovisioning method again.
Termination Controller
When a Karpenter node is deleted, the Karpenter finalizer will block deletion and the APIServer will set the DeletionTimestamp
on the node, allowing Karpenter to gracefully shutdown the node, modeled after K8s Graceful Node Shutdown. Karpenter’s graceful shutdown process will:
- Cordon the node to prevent pods from scheduling to it.
- Begin evicting the pods on the node with the K8s Eviction API to respect PDBs, while ignoring all non-daemonset pods and static pods. Wait for the node to be fully drained before proceeding to Step (3).
- While waiting, if the underlying machine for the node no longer exists, remove the finalizer to allow the APIServer to delete the node, completing termination.
- Terminate the machine in the Cloud Provider.
- Remove the finalizer from the node to allow the APIServer to delete the node, completing termination.
Methods
There are both automated and manual ways of deprovisioning nodes provisioned by Karpenter:
Manual Methods
-
Node Deletion: You could use
kubectl
to manually remove a single Karpenter node:# Delete a specific node kubectl delete node $NODE_NAME # Delete all nodes owned any provisioner kubectl delete nodes -l karpenter.sh/provisioner-name # Delete all nodes owned by a specific provisioner kubectl delete nodes -l karpenter.sh/provisioner-name=$PROVISIONER_NAME
-
Provisioner Deletion: Nodes are owned by the Provisioner through an owner reference that launched them. Karpenter will gracefully terminate nodes through cascading deletion when the owning provisioner is deleted.
Automated Methods
- Emptiness: Karpenter notes when the last workload (non-daemonset) pod stops running on a node. From that point, Karpenter waits the number of seconds set by
ttlSecondsAfterEmpty
in the provisioner, then Karpenter requests to delete the node. This feature can keep costs down by removing nodes that are no longer being used for workloads. - Expiration: Karpenter will annotate nodes as expired and deprovision nodes after they have lived a set number of seconds, based on the provisioner
ttlSecondsUntilExpired
value. One use case for node expiry is to periodically recycle nodes. Old nodes (with a potentially outdated Kubernetes version or operating system) are deleted, and replaced with nodes on the current version (assuming that you requested the latest version, rather than a specific version). - Consolidation: Karpenter works to actively reduce cluster cost by identifying when:
- Nodes can be removed as their workloads will run on other nodes in the cluster.
- Nodes can be replaced with cheaper variants due to a change in the workloads.
- Drift: Karpenter will annotate nodes as drifted and deprovision nodes that have drifted from their desired specification. Currently, Karpenter will only automatically mark nodes as drifted in the case of a drifted AMI.
- Interruption: If enabled, Karpenter will watch for upcoming involuntary interruption events that could affect your nodes (health events, spot interruption, etc.) and will cordon, drain, and terminate the node(s) ahead of the event to reduce workload disruption.
Note
-
Automated deprovisioning is configured through the ProvisionerSpec
.ttlSecondsAfterEmpty
,.ttlSecondsUntilExpired
and.consolidation.enabled
fields. If these are not configured, Karpenter will not set default values for them and will not terminate nodes for that purpose. -
Keep in mind that a small
ttlSecondsUntilExpired
results in a higher churn in cluster activity. For a small enoughttlSecondsUntilExpired
, nodes may expire faster than Karpenter can safely deprovision them, resulting in constant node deprovisioning. -
Pods without an ownerRef (also called “controllerless” or “naked” pods) will be evicted during automatic node disruption, besides Interruption. A pod with the annotation
karpenter.sh/do-not-evict: "true"
will cause its node to be opted out from the same deprovisioning methods. -
Using preferred anti-affinity and topology spreads can reduce the effectiveness of consolidation. At node launch, Karpenter attempts to satisfy affinity and topology spread preferences. In order to reduce node churn, consolidation must also attempt to satisfy these constraints to avoid immediately consolidating nodes after they launch. This means that consolidation may not deprovision nodes in order to avoid violating preferences, even if kube-scheduler can fit the host pods elsewhere. Karpenter reports these pods via logging to bring awareness to the possible issues they can cause (e.g.
pod default/inflate-anti-self-55894c5d8b-522jd has a preferred Anti-Affinity which can prevent consolidation
). -
By adding the finalizer, Karpenter improves the default Kubernetes process of node deletion. When you run
kubectl delete node
on a node without a finalizer, the node is deleted without triggering the finalization logic. The machine will continue running in EC2, even though there is no longer a node object for it. The kubelet isn’t watching for its own existence, so if a node is deleted, the kubelet doesn’t terminate itself. All the pod objects get deleted by a garbage collection process later, because the pods’ node is gone.
Consolidation
Karpenter has two mechanisms for cluster consolidation:
- Deletion - A node is eligible for deletion if all of its pods can run on free capacity of other nodes in the cluster.
- Replace - A node can be replaced if all of its pods can run on a combination of free capacity of other nodes in the cluster and a single cheaper replacement node.
Consolidation has three mechanisms that are performed in order to attempt to identify a consolidation action:
- Empty Node Consolidation - Delete any entirely empty nodes in parallel
- Multi-Node Consolidation - Try to delete two or more nodes in parallel, possibly launching a single replacement that is cheaper than the price of all nodes being removed
- Single-Node Consolidation - Try to delete any single node, possibly launching a single replacement that is cheaper than the price of that node
It’s impractical to examine all possible consolidation options for multi-node consolidation, so Karpenter uses a heuristic to identify a likely set of nodes that can be consolidated. For single-node consolidation we consider each node in the cluster individually.
When there are multiple nodes that could be potentially deleted or replaced, Karpenter choose to consolidate the node that overall disrupts your workloads the least by preferring to terminate:
- nodes running fewer pods
- nodes that will expire soon
- nodes with lower priority pods
Note
For spot nodes, Karpenter only uses the deletion consolidation mechanism. It will not replace a spot node with a cheaper spot node. Spot instance types are selected with theprice-capacity-optimized
strategy and often the cheapest spot instance type is not launched due to the likelihood of interruption. Consolidation would then replace the spot instance with a cheaper instance negating the price-capacity-optimized
strategy entirely and increasing interruption rate.
If consolidation is enabled, Karpenter periodically reports events against nodes that indicate why the node can’t be consolidated. These events can be used to investigate nodes that you expect to have been consolidated, but still remain in your cluster.
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Unconsolidatable 66s karpenter pdb default/inflate-pdb prevents pod evictions
Normal Unconsolidatable 33s (x3 over 30m) karpenter can't replace with a cheaper node
Interruption
If interruption-handling is enabled, Karpenter will watch for upcoming involuntary interruption events that would cause disruption to your workloads. These interruption events include:
- Spot Interruption Warnings
- Scheduled Change Health Events (Maintenance Events)
- Instance Terminating Events
- Instance Stopping Events
When Karpenter detects one of these events will occur to your nodes, it automatically cordons, drains, and terminates the node(s) ahead of the interruption event to give the maximum amount of time for workload cleanup prior to compute disruption. This enables scenarios where the terminationGracePeriod
for your workloads may be long or cleanup for your workloads is critical, and you want enough time to be able to gracefully clean-up your pods.
Note
Karpenter publishes Kubernetes events to the node for all events listed above in addition to Spot Rebalance Recommendations. Karpenter does not currently support cordon, drain, and terminate logic for Spot Rebalance Recommendations.Karpenter enables this feature by watching an SQS queue which receives critical events from AWS services which may affect your nodes. Karpenter requires that an SQS queue be provisioned and EventBridge rules and targets be added that forward interruption events from AWS services to the SQS queue. Karpenter provides details for provisioning this infrastructure in the CloudFormation template in the Getting Started Guide.
To enable the interruption handling feature flag, configure the karpenter-global-settings
ConfigMap with the following value mapped to the name of the interruption queue that handles interruption events.
apiVersion: v1
kind: ConfigMap
metadata:
name: karpenter-global-settings
namespace: karpenter
data:
...
aws.interruptionQueueName: karpenter-cluster
...
Drift
If drift is enabled, Karpenter will deprovision nodes that have been marked as drifted with the annotation karpenter.sh/voluntary-disruption: "drifted"
. Karpenter will automatically cordon, drain, and terminate nodes, while respecting any PDBs or do-not-evict
pods that are configured. Karpenter will automatically mark nodes as drifted if the AMI that is used on the instance does not match the AMI set by the AWSNodeTemplate. Check the AWSNodeTemplate Docs settings for more.
If users annotate their own nodes with karpenter.sh/voluntary-disruption: "drifted"
, Karpenter will respect the annotation and deprovision the nodes.
Note
Karpenter will only automatically mark nodes as drifted in the case of a drifted AMI. More methods of drift will be implemented in the future. Please cut a feature request if you’d like to see more methods implemented.To enable the drift feature flag, refer to the Settings Feature Gates.
Disabling Deprovisioning
Pod Eviction
Pods can be opted out of eviction by setting the annotation karpenter.sh/do-not-evict: "true"
on the pod. This is useful for pods that you want to run from start to finish without interruption.
Examples might include a real-time, interactive game that you don’t want to interrupt, or a long batch job (such as you might have with machine learning) that would need to start over if it were interrupted.
apiVersion: apps/v1
kind: Deployment
spec:
template:
metadata:
annotations:
karpenter.sh/do-not-evict: "true"
By opting pods out of eviction, you are telling Karpenter that it should not voluntarily remove nodes containing this pod.
However, if a do-not-evict pod is added to a node while the node is draining, the remaining pods will still evict, but that pod will block termination until it is removed. In either case, the node will be cordoned to prevent additional work from scheduling.
Examples of voluntary node removal that will be prevented by this annotation include:
- Consolidation
- Drift
- Emptiness
- Expiration
Note
Voluntary node removal does not include Interruption or manual deletion initiated throughkubectl delete node
, both considered involuntary events, since node removal cannot be delayed.
Note
This annotation will have no effect for static pods, pods that tolerateNoSchedule
, or pods terminating past their graceful termination period.
Node Consolidation
Nodes can be opted out of consolidation deprovisioning by setting the annotation karpenter.sh/do-not-consolidate: "true"
on the node.
apiVersion: karpenter.sh/v1alpha5
kind: Node
metadata:
annotations:
karpenter.sh/do-not-consolidate: "true"
Example: Disable Consolidation on Provisioner
Provisioner .spec.annotations
allow you to set annotations that will be applied to all nodes launched by this provisioner. By setting the annotation karpenter.sh/do-not-consolidate: "true"
on the provisioner, you will selectively prevent all nodes launched by this Provisioner from being considered in consolidation calculations.
apiVersion: karpenter.sh/v1alpha5
kind: Provisioner
metadata:
name: default
spec:
annotations: # will be applied to all nodes
karpenter.sh/do-not-consolidate: "true"