Class: Aws::EKS::Types::NodegroupUpdateConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::NodegroupUpdateConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
The node group update configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_unavailable ⇒ Integer
The maximum number of nodes unavailable at once during a version update.
-
#max_unavailable_percentage ⇒ Integer
The maximum percentage of nodes unavailable during a version update.
Instance Attribute Details
#max_unavailable ⇒ Integer
The maximum number of nodes unavailable at once during a version update. Nodes are updated in parallel. This value or ‘maxUnavailablePercentage` is required to have a value.The maximum number is 100.
5081 5082 5083 5084 5085 5086 |
# File 'lib/aws-sdk-eks/types.rb', line 5081 class NodegroupUpdateConfig < Struct.new( :max_unavailable, :max_unavailable_percentage) SENSITIVE = [] include Aws::Structure end |
#max_unavailable_percentage ⇒ Integer
The maximum percentage of nodes unavailable during a version update. This percentage of nodes are updated in parallel, up to 100 nodes at once. This value or ‘maxUnavailable` is required to have a value.
5081 5082 5083 5084 5085 5086 |
# File 'lib/aws-sdk-eks/types.rb', line 5081 class NodegroupUpdateConfig < Struct.new( :max_unavailable, :max_unavailable_percentage) SENSITIVE = [] include Aws::Structure end |