terraform-aws-eks
terraform-aws-eks copied to clipboard
added nodegroup update config configuration
Configuration for the update strategy of the EKS managed node group.
-
max_unavailable_value: Defines how many nodes can be updated at a time.- If
use_percentageistrue, this value represents the percentage of nodes that can be unavailable during updates. - If
use_percentageisfalse, this value represents the absolute number of nodes that can be unavailable during updates.
- If
-
use_percentage: Determines whether
max_unavailable_valueshould be treated as a percentage or a fixed number.true:max_unavailable_valueis interpreted as a percentage (e.g., 50 means 50% of nodes can be unavailable).false:max_unavailable_valueis interpreted as an absolute number (e.g., 2 means 2 nodes can be unavailable).