interface UpdateConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EKS.CfnNodegroup.UpdateConfigProperty |
Java | software.amazon.awscdk.services.eks.CfnNodegroup.UpdateConfigProperty |
Python | aws_cdk.aws_eks.CfnNodegroup.UpdateConfigProperty |
TypeScript | @aws-cdk/aws-eks » CfnNodegroup » UpdateConfigProperty |
The update configuration for the node group.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as eks from '@aws-cdk/aws-eks';
const updateConfigProperty: eks.CfnNodegroup.UpdateConfigProperty = {
maxUnavailable: 123,
maxUnavailablePercentage: 123,
};
Properties
Name | Type | Description |
---|---|---|
max | number | The maximum number of nodes unavailable at once during a version update. |
max | number | The maximum percentage of nodes unavailable during a version update. |
maxUnavailable?
Type:
number
(optional)
The 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.
maxUnavailablePercentage?
Type:
number
(optional)
The 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.