You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: