-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: add custom tags on managed node's ASG (fixes scale-up by the
autoscaler) The tags specified on the resource type "aws_eks_node_group" are not propagated to the ASG that represents this node group (issue aws/containers-roadmap#608). As a workaround, we add tags to the ASG after the nodegroup creation/updates using the AWS command-line. This will fix scaling up from 0, in EKS-managed node groups, when pods have affinities/nodeSelectors defined on custom tags.
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,6 @@ terraform { | |
|
||
required_providers { | ||
aws = ">= 2.70.0" | ||
null = ">= 3.1.0" | ||
} | ||
} |