Class: Google::Apis::ContainerV1beta1::UpgradeSettings
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::UpgradeSettings
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.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. 1. 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. 2. maxUnavailable controls the number of nodes that can be simultaneously unavailable. 3. (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. 1. 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. 2. 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::Apis::ContainerV1beta1::BlueGreenSettings
Settings for blue-green upgrade.
-
#max_surge ⇒ Fixnum
The maximum number of nodes that can be created beyond the current size of the node pool during the upgrade process.
-
#max_unavailable ⇒ Fixnum
The maximum number of nodes that can be simultaneously unavailable during the upgrade process.
-
#strategy ⇒ String
Update strategy of the node pool.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpgradeSettings
constructor
A new instance of UpgradeSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpgradeSettings
Returns a new instance of UpgradeSettings.
7453 7454 7455 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 7453 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blue_green_settings ⇒ Google::Apis::ContainerV1beta1::BlueGreenSettings
Settings for blue-green upgrade.
Corresponds to the JSON property blueGreenSettings
7434 7435 7436 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 7434 def blue_green_settings @blue_green_settings end |
#max_surge ⇒ Fixnum
The maximum number of nodes that can be created beyond the current size of the
node pool during the upgrade process.
Corresponds to the JSON property maxSurge
7440 7441 7442 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 7440 def max_surge @max_surge end |
#max_unavailable ⇒ Fixnum
The maximum number of nodes that can be simultaneously unavailable during the
upgrade process. A node is considered available if its status is Ready.
Corresponds to the JSON property maxUnavailable
7446 7447 7448 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 7446 def max_unavailable @max_unavailable end |
#strategy ⇒ String
Update strategy of the node pool.
Corresponds to the JSON property strategy
7451 7452 7453 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 7451 def strategy @strategy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7458 7459 7460 7461 7462 7463 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 7458 def update!(**args) @blue_green_settings = args[:blue_green_settings] if args.key?(:blue_green_settings) @max_surge = args[:max_surge] if args.key?(:max_surge) @max_unavailable = args[:max_unavailable] if args.key?(:max_unavailable) @strategy = args[:strategy] if args.key?(:strategy) end |