ClusterNodePoolUpgradeSettingsArgs

data class ClusterNodePoolUpgradeSettingsArgs(val blueGreenSettings: Output<ClusterNodePoolUpgradeSettingsBlueGreenSettingsArgs>? = null, val maxSurge: Output<Int>? = null, val maxUnavailable: Output<Int>? = null, val strategy: Output<String>? = null) : ConvertibleToJava<ClusterNodePoolUpgradeSettingsArgs>

Constructors

Link copied to clipboard
constructor(blueGreenSettings: Output<ClusterNodePoolUpgradeSettingsBlueGreenSettingsArgs>? = null, maxSurge: Output<Int>? = null, maxUnavailable: Output<Int>? = null, strategy: Output<String>? = null)

Properties

Link copied to clipboard

Settings for blue-green upgrade strategy. To be specified when strategy is set to BLUE_GREEN. Structure is documented below.

Link copied to clipboard
val maxSurge: Output<Int>? = null

The maximum number of nodes that can be created beyond the current size of the node pool during the upgrade process. To be used when strategy is set to SURGE. Default is 0.

Link copied to clipboard
val maxUnavailable: Output<Int>? = null

The maximum number of nodes that can be simultaneously unavailable during the upgrade process. To be used when strategy is set to SURGE. Default is 0.

Link copied to clipboard
val strategy: Output<String>? = null

Strategy used for node pool update. Strategy can only be one of BLUE_GREEN or SURGE. The default is value is SURGE.

Functions

Link copied to clipboard
open override fun toJava(): ClusterNodePoolUpgradeSettingsArgs