mumoshu / terraform-provider-eksctl

Manage AWS EKS clusters using Terraform and eksctl
Apache License 2.0
234 stars 44 forks source link

Unexpected node group draining behaviour #61

Open josefbarak opened 2 years ago

josefbarak commented 2 years ago

Node group draining behaved differently than described in README.

drain_node_groups = { nodeGroup1 = true, nodeGroup2 = false, } This actually drains both node groups.

drain_node_groups = { nodeGroup1 = true,

nodeGroup2 = false,

} This drains nodeGroup1 only.

drain_node_groups = {

nodeGroup1 = true,

nodeGroup2 = false,

} This drains nodeGroup2 only.

From what I have tested it seems just the presence of node group in drain_node_groups is enough to drain it. eksctl version 0.74.0 mumoshu/eksctl versions 0.16.2