NodePoolResponse

data class NodePoolResponse(val autoscaling: NodePoolAutoscalingResponse, val conditions: List<StatusConditionResponse>, val config: NodeConfigResponse, val etag: String, val initialNodeCount: Int, val instanceGroupUrls: List<String>, val locations: List<String>, val management: NodeManagementResponse, val maxPodsConstraint: MaxPodsConstraintResponse, val name: String, val networkConfig: NodeNetworkConfigResponse, val placementPolicy: PlacementPolicyResponse, val podIpv4CidrSize: Int, val selfLink: String, val status: String, val statusMessage: String, val updateInfo: UpdateInfoResponse, val upgradeSettings: UpgradeSettingsResponse, val version: String)

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.

Constructors

Link copied to clipboard
fun NodePoolResponse(autoscaling: NodePoolAutoscalingResponse, conditions: List<StatusConditionResponse>, config: NodeConfigResponse, etag: String, initialNodeCount: Int, instanceGroupUrls: List<String>, locations: List<String>, management: NodeManagementResponse, maxPodsConstraint: MaxPodsConstraintResponse, name: String, networkConfig: NodeNetworkConfigResponse, placementPolicy: PlacementPolicyResponse, podIpv4CidrSize: Int, selfLink: String, status: String, statusMessage: String, updateInfo: UpdateInfoResponse, upgradeSettings: UpgradeSettingsResponse, version: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Autoscaler configuration for this NodePool. Autoscaler is enabled only if a valid configuration is present.

Link copied to clipboard

Which conditions caused the current node pool state.

Link copied to clipboard

The node configuration of the pool.

Link copied to clipboard

This checksum is computed by the server based on the value of node pool fields, and may be sent on update requests to ensure the client has an up-to-date value before proceeding.

Link copied to clipboard

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.

Link copied to clipboard

Output only The resource URLs of the managed instance groups associated with this node pool. During the node pool blue-green upgrade operation, the URLs contain both blue and green resources.

Link copied to clipboard

The list of Google Compute Engine zones in which the NodePool's nodes should be located. If this value is unspecified during node pool creation, the Cluster.Locations value will be used, instead. Warning: changing node pool locations will result in nodes being added and/or removed.

Link copied to clipboard

NodeManagement configuration for this NodePool.

Link copied to clipboard

The constraint on the maximum number of pods that can be run simultaneously on a node in the node pool.

Link copied to clipboard

The name of the node pool.

Link copied to clipboard

Networking configuration for this NodePool. If specified, it overrides the cluster-level defaults.

Link copied to clipboard

Specifies the node placement policy.

Link copied to clipboard

Output only The pod CIDR block size per node in this node pool.

Link copied to clipboard

Output only Server-defined URL for the resource.

Link copied to clipboard

Output only The status of the nodes in this pool instance.

Link copied to clipboard

Output only Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.

Link copied to clipboard

Output only Update info contains relevant information during a node pool update.

Link copied to clipboard

Upgrade settings control disruption and speed of the upgrade.

Link copied to clipboard

The version of Kubernetes running on this NodePool's nodes. If unspecified, it defaults as described here.