interface UpdateConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EKS.Legacy.CfnNodegroup.UpdateConfigProperty |
![]() | software.amazon.awscdk.services.eks.legacy.CfnNodegroup.UpdateConfigProperty |
![]() | aws_cdk.aws_eks_legacy.CfnNodegroup.UpdateConfigProperty |
![]() | @aws-cdk/aws-eks-legacy » 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_legacy from '@aws-cdk/aws-eks-legacy';
const updateConfigProperty: eks_legacy.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.