ClusterNodePoolUpgradeSettings

data class ClusterNodePoolUpgradeSettings(val blueGreenSettings: ClusterNodePoolUpgradeSettingsBlueGreenSettings? = null, val maxSurge: Int? = null, val maxUnavailable: Int? = null, val strategy: String? = null)

Constructors

Link copied to clipboard
constructor(blueGreenSettings: ClusterNodePoolUpgradeSettingsBlueGreenSettings? = null, maxSurge: Int? = null, maxUnavailable: Int? = null, strategy: String? = null)

Types

Link copied to clipboard
object Companion

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: 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: 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: String? = null

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