Class: Aws::EKS::Types::NodegroupUpdateConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::NodegroupUpdateConfig
- Defined in:
- gems/aws-sdk-eks/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.
4906 4907 4908 4909 4910 4911 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4906 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.
4906 4907 4908 4909 4910 4911 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4906 class NodegroupUpdateConfig < Struct.new( :max_unavailable, :max_unavailable_percentage) SENSITIVE = [] include Aws::Structure end |