You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `The Kubernetes version on the nodes. Must either be unset or set to the same value as min_master_version on create. Defaults to the default version set by GKE which is not necessarily the latest version. This only affects nodes in the default node pool. While a fuzzy version can be specified, it's recommended that you specify explicit versions as Terraform will see spurious diffs when fuzzy versions are used. See the google_container_engine_versions data source's version_prefix field to approximate fuzzy versions in a Terraform-compatible way. To update nodes in other node pools, use the version attribute on the node pool.`,
1455
1455
},
1456
1456
1457
+
"pod_autoscaling": {
1458
+
Type: schema.TypeList,
1459
+
Optional: true,
1460
+
Computed: true,
1461
+
MaxItems: 1,
1462
+
Description: `PodAutoscaling is used for configuration of parameters for workload autoscaling`,
HPA Profile is used to configure the Horizontal Pod Autoscaler (HPA) profile for the cluster.
1471
+
Available options include:
1472
+
- NONE: Customers explicitly opt-out of HPA profiles.
1473
+
- PERFORMANCE: PERFORMANCE is used when customers opt-in to the performance HPA profile. In this profile we support a higher number of HPAs per cluster and faster metrics collection for workload autoscaling.
1474
+
`,
1475
+
},
1476
+
},
1477
+
},
1478
+
},
1457
1479
"secret_manager_config": {
1458
1480
Type: schema.TypeList,
1459
1481
Optional: true,
@@ -2365,6 +2387,7 @@ func resourceContainerClusterCreate(d *schema.ResourceData, meta interface{}) er
0 commit comments