Reference documentation and code samples for the Kubernetes Engine V1beta1 API class Google::Cloud::Container::V1beta1::NodePool.
NodePool contains the name and configuration for a cluster's node pool. Node pools are a set of nodes (i.e. VM's), with a common configuration and specification, under the control of the cluster master. They may have a set of Kubernetes labels applied to them, which may be used to reference them during pod scheduling. They may also be resized up or down, to accommodate the workload. These upgrade settings control the level of parallelism and the level of disruption caused by an upgrade.
maxUnavailable controls the number of nodes that can be simultaneously unavailable.
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.
(maxUnavailable + maxSurge) determines the level of parallelism (how many nodes are being upgraded at the same time).
Note: upgrades inevitably introduce some disruption since workloads need to be moved from old nodes to new, upgraded ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the limits of PodDisruptionBudget, if it is configured.)
Consider a hypothetical node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the same time. This ensures that there are always at least 4 nodes available.
Inherits
- Object
Extended By
- Google::Protobuf::MessageExts::ClassMethods
Includes
- Google::Protobuf::MessageExts
Methods
#autoscaling
def autoscaling() -> ::Google::Cloud::Container::V1beta1::NodePoolAutoscaling
- (::Google::Cloud::Container::V1beta1::NodePoolAutoscaling) — Autoscaler configuration for this NodePool. Autoscaler is enabled only if a valid configuration is present.
#autoscaling=
def autoscaling=(value) -> ::Google::Cloud::Container::V1beta1::NodePoolAutoscaling
- value (::Google::Cloud::Container::V1beta1::NodePoolAutoscaling) — Autoscaler configuration for this NodePool. Autoscaler is enabled only if a valid configuration is present.
- (::Google::Cloud::Container::V1beta1::NodePoolAutoscaling) — Autoscaler configuration for this NodePool. Autoscaler is enabled only if a valid configuration is present.
#conditions
def conditions() -> ::Array<::Google::Cloud::Container::V1beta1::StatusCondition>
- (::Array<::Google::Cloud::Container::V1beta1::StatusCondition>) — Which conditions caused the current node pool state.
#conditions=
def conditions=(value) -> ::Array<::Google::Cloud::Container::V1beta1::StatusCondition>
- value (::Array<::Google::Cloud::Container::V1beta1::StatusCondition>) — Which conditions caused the current node pool state.
- (::Array<::Google::Cloud::Container::V1beta1::StatusCondition>) — Which conditions caused the current node pool state.
#config
def config() -> ::Google::Cloud::Container::V1beta1::NodeConfig
- (::Google::Cloud::Container::V1beta1::NodeConfig) — The node configuration of the pool.
#config=
def config=(value) -> ::Google::Cloud::Container::V1beta1::NodeConfig
- value (::Google::Cloud::Container::V1beta1::NodeConfig) — The node configuration of the pool.
- (::Google::Cloud::Container::V1beta1::NodeConfig) — The node configuration of the pool.
#initial_node_count
def initial_node_count() -> ::Integer
- (::Integer) — The initial node count for the pool. You must ensure that your Compute Engine resource quota is sufficient for this number of instances. You must also have available firewall and routes quota.
#initial_node_count=
def initial_node_count=(value) -> ::Integer
- value (::Integer) — The initial node count for the pool. You must ensure that your Compute Engine resource quota is sufficient for this number of instances. You must also have available firewall and routes quota.
- (::Integer) — The initial node count for the pool. You must ensure that your Compute Engine resource quota is sufficient for this number of instances. You must also have available firewall and routes quota.
#instance_group_urls
def instance_group_urls() -> ::Array<::String>