We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dff998e commit 7a1af21Copy full SHA for 7a1af21
docs/r/container_node_pool.html.markdown
@@ -67,3 +67,13 @@ resource "google_container_cluster" "primary" {
67
68
* `name_prefix` - (Optional) Creates a unique name for the node pool beginning
69
with the specified prefix. Conflicts with `name`.
70
+
71
+* `autoscaling` - (Optional) Configuration required by cluster autoscaler to adjust
72
+ the size of the node pool to the current cluster usage. Structure is documented below.
73
74
+The `autoscaling` block supports:
75
76
+* `minNodeCount` - (Required) Minimum number of nodes in the NodePool. Must be >=1 and
77
+ <= `maxNodeCount`.
78
79
+* `maxNodeCount` - (Required) Maximum number of nodes in the NodePool. Must be >= minNodeCount.
0 commit comments