NodeManagementArgs

data class NodeManagementArgs(val autoRepair: Output<Boolean>? = null, val autoUpgrade: Output<Boolean>? = null, val upgradeOptions: Output<AutoUpgradeOptionsArgs>? = null) : ConvertibleToJava<NodeManagementArgs>

NodeManagement defines the set of node management services turned on for the node pool.

Constructors

Link copied to clipboard
fun NodeManagementArgs(autoRepair: Output<Boolean>? = null, autoUpgrade: Output<Boolean>? = null, upgradeOptions: Output<AutoUpgradeOptionsArgs>? = null)

Functions

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

Properties

Link copied to clipboard
val autoRepair: Output<Boolean>? = null

A flag that specifies whether the node auto-repair is enabled for the node pool. If enabled, the nodes in this node pool will be monitored and, if they fail health checks too many times, an automatic repair action will be triggered.

Link copied to clipboard
val autoUpgrade: Output<Boolean>? = null

A flag that specifies whether node auto-upgrade is enabled for the node pool. If enabled, node auto-upgrade helps keep the nodes in your node pool up to date with the latest release version of Kubernetes.

Link copied to clipboard

Specifies the Auto Upgrade knobs for the node pool.