-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Closed
Description
Is your request related to a new offering from AWS?
yes, scheduled for release 3.43.0
hashicorp/terraform-provider-aws#19310
Is your request related to a problem? Please describe.
Will solve workaround with kubelet_extra_args to add taints to nodes
and relates to some issues:
#1232
#1214
#1085
#962
Describe the solution you'd like.
Simply set the block and make it available as input variable similar to k8s_labels
resource "aws_eks_node_group" "example" {
...
taint {
key = "dedicated"
value = "gpuGroup"
effect = "NO_SCHEDULE"
}
taint {
key = "special"
value = "true"
effect = "PREFER_NO_SCHEDULE"
}
}
Describe alternatives you've considered.
Additional context
barryib, karl-dpg, harishgopi, mowings, jfoechsler and 4 more
Metadata
Metadata
Assignees
Labels
No labels