Skip to main content

EKS Update Nodegroup Config

Updates an Amazon EKS managed node group configuration. Your node group continues to function during the update. The response output includes an update ID that you can use to track the status of your node group update with the DescribeUpdate API operation. Currently you can update the Kubernetes labels for a node group or the scaling configuration.

External Documentation

To learn more, visit the AWS documentation.

Basic Parameters

ParameterDescription
AWS Region(s)Enter the desired AWS Region(s).

To execute the action in multiple regions, provide a comma-separated list.
For example: us-east-1,eu-west-2.

If you wish to run the action in all available regions, use the asterisk symbol (*) instead.
Cluster NameThe name of the Amazon EKS cluster that the managed node group resides in.
Nodegroup NameThe name of the managed node group to update.

Advanced Parameters

ParameterDescription
Add Or Update LabelsKubernetes labels to be added or updated.
Add Or Update TaintsKubernetes taints to be added or updated.
Client Request TokenUnique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Disable XML To JSON Auto ConvertWhen checked, XML responses are not automatically converted into JSON format.
Remove LabelsKubernetes labels to be removed.
Remove TaintsKubernetes taints to be removed.
Scaling Config Desired SizeThe current number of nodes that the managed node group should maintain.
Scaling Config Max SizeThe maximum number of nodes that the managed node group can scale out to. For information about the maximum number that you can specify, see Amazon EKS service quotas in the Amazon EKS User Guide.
Scaling Config Min SizeThe minimum number of nodes that the managed node group can scale in to.
Update Config Max UnavailableThe maximum number of nodes unavailable at once during a version update. Nodes will be updated in parallel. This value or maxUnavailablePercentage is required to have a value.The maximum number is 100.
Update Config Max Unavailable PercentageThe maximum percentage of nodes unavailable during a version update. This percentage of nodes will be updated in parallel, up to 100 nodes at once. This value or maxUnavailable is required to have a value.

Example Output

{
"update": {
"createdAt": "date-time",
"errors": [
{
"errorCode": "string",
"errorMessage": "string",
"resourceIds": [
"string"
]
}
],
"id": "string",
"params": [
{
"type": "string",
"value": "string"
}
],
"status": "string",
"type": "string"
}
}

Automation Library Example

Pause Eks Cluster

Automation LibraryPreview this Automation on desktop