Class: Google::Cloud::Container::V1beta1::NodePool::UpgradeSettings
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::NodePool::UpgradeSettings
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
These upgrade settings configure the upgrade strategy for the node pool. Use strategy to switch between the strategies applied to the node pool.
If the strategy is SURGE, use max_surge and max_unavailable to control the level of parallelism and the level of disruption caused by upgrade.
- maxSurge controls the number of additional nodes that can be added to the node pool temporarily for the time of the upgrade to increase the number of available nodes.
- maxUnavailable controls the number of nodes that can be simultaneously unavailable.
- (maxUnavailable + maxSurge) determines the level of parallelism (how many nodes are being upgraded at the same time).
If the strategy is BLUE_GREEN, use blue_green_settings to configure the blue-green upgrade related settings.
- standard_rollout_policy is the default policy. The policy is used to control the way blue pool gets drained. The draining is executed in the batch mode. The batch size could be specified as either percentage of the node pool size or the number of nodes. batch_soak_duration is the soak time after each batch gets drained.
- node_pool_soak_duration is the soak time after all blue nodes are drained. After this period, the blue pool nodes will be deleted.
Instance Attribute Summary collapse
-
#blue_green_settings ⇒ ::Google::Cloud::Container::V1beta1::BlueGreenSettings
Settings for blue-green upgrade strategy.
-
#max_surge ⇒ ::Integer
The maximum number of nodes that can be created beyond the current size of the node pool during the upgrade process.
-
#max_unavailable ⇒ ::Integer
The maximum number of nodes that can be simultaneously unavailable during the upgrade process.
-
#strategy ⇒ ::Google::Cloud::Container::V1beta1::NodePoolUpdateStrategy
Update strategy of the node pool.
Instance Attribute Details
#blue_green_settings ⇒ ::Google::Cloud::Container::V1beta1::BlueGreenSettings
Returns Settings for blue-green upgrade strategy.
3363 3364 3365 3366 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3363 class UpgradeSettings include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#max_surge ⇒ ::Integer
Returns The maximum number of nodes that can be created beyond the current size of the node pool during the upgrade process.
3363 3364 3365 3366 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3363 class UpgradeSettings include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#max_unavailable ⇒ ::Integer
Returns The maximum number of nodes that can be simultaneously unavailable during the upgrade process. A node is considered available if its status is Ready.
3363 3364 3365 3366 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3363 class UpgradeSettings include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#strategy ⇒ ::Google::Cloud::Container::V1beta1::NodePoolUpdateStrategy
Returns Update strategy of the node pool.
3363 3364 3365 3366 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 3363 class UpgradeSettings include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |