Struct google_container1::NodeManagement[][src]

pub struct NodeManagement {
    pub auto_repair: Option<bool>,
    pub upgrade_options: Option<AutoUpgradeOptions>,
    pub auto_upgrade: Option<bool>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

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.

Specifies the Auto Upgrade knobs for the node pool.

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.

Trait Implementations

impl Default for NodeManagement
[src]

Returns the "default value" for a type. Read more

impl Clone for NodeManagement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NodeManagement
[src]

Formats the value using the given formatter. Read more

impl Part for NodeManagement
[src]

Auto Trait Implementations