karpenter_node_taints
Description
The karpenter_node_taints parameter adds custom Kubernetes taints to Karpenter workload nodes. Taints prevent pods without matching tolerations from scheduling on these nodes.
Default Value
The default value is empty (no custom taints).
Setting the Parameter
$ convox rack params set karpenter_node_taints=dedicated=workload:NoSchedule -r rackName
Setting parameters... OK
Additional Information
- Format: Comma-separated
key=value:Effectorkey:Effectentries. - Validation: Effect must be
NoSchedule,PreferNoSchedule, orNoExecute. Keys and values must not contain double quotes. convox.ymldoes not have atolerationsfield. For GPU taints (nvidia.com/gpu,amd.com/gpu), Convox emits a matching toleration (operator: Exists,effect: NoSchedule) directly on any pod that declaresscale.gpu.count > 0— no admission controller is required. For non-GPU taints, tolerations must be added through an external mechanism (e.g., a mutating admission webhook) or via thededicated-nodeconvention (setnodeSelectorLabels.convox.io/label: <value>to also receive the dedicated-node toleration). See Using Taints to Protect Nodes for details.- Node-level DaemonSets (fluentd,
aws-node,kube-proxy, etc.) are not affected by custom taints — they use broad tolerations and will continue to run on tainted nodes.
See Also
- Karpenter for the full Karpenter configuration reference
- karpenter_node_labels