From a815f975134a9d7d43091bf3228dc1a9f80059e2 Mon Sep 17 00:00:00 2001 From: The Magician Date: Wed, 27 Mar 2019 14:54:30 -0700 Subject: [PATCH] [terraform-beta] docs for container_cluster and container_node_pool resources (#3330) /cc @rrondeau --- website/docs/r/container_cluster.html.markdown | 6 ++++++ website/docs/r/container_node_pool.html.markdown | 2 ++ 2 files changed, 8 insertions(+) diff --git a/website/docs/r/container_cluster.html.markdown b/website/docs/r/container_cluster.html.markdown index 620c3b38..eb9cb57a 100644 --- a/website/docs/r/container_cluster.html.markdown +++ b/website/docs/r/container_cluster.html.markdown @@ -183,6 +183,12 @@ deprecated in favour of `node_locations`. * `description` - (Optional) Description of the cluster. +* `default_max_pods_per_node` - (Optional, [Beta](https://terraform.io/docs/providers/google/provider_versions.html)) The default maximum number of pods per node in this cluster. + Note that this does not work on node pools which are "route-based" - that is, node + pools belonging to clusters that do not have IP Aliasing enabled. + See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/how-to/flexible-pod-cidr) + for more information. + * `enable_binary_authorization` - (Optional, [Beta](https://terraform.io/docs/providers/google/provider_versions.html)) Enable Binary Authorization for this cluster. If enabled, all container images will be validated by Google Binary Authorization. diff --git a/website/docs/r/container_node_pool.html.markdown b/website/docs/r/container_node_pool.html.markdown index f50f2b9a..28dd2ffa 100644 --- a/website/docs/r/container_node_pool.html.markdown +++ b/website/docs/r/container_node_pool.html.markdown @@ -125,6 +125,8 @@ type-specific `region` for regional clusters / `zone` for zonal clusters. * `max_pods_per_node` - (Optional, [Beta](https://terraform.io/docs/providers/google/provider_versions.html)) The maximum number of pods per node in this node pool. Note that this does not work on node pools which are "route-based" - that is, node pools belonging to clusters that do not have IP Aliasing enabled. + See the [official documentation](https://cloud.google.com/kubernetes-engine/docs/how-to/flexible-pod-cidr) + for more information. * `name` - (Optional) The name of the node pool. If left blank, Terraform will auto-generate a unique name.