diff --git a/.changelog/3392.txt b/.changelog/3392.txt new file mode 100644 index 00000000000..4b0eeeea1ed --- /dev/null +++ b/.changelog/3392.txt @@ -0,0 +1,3 @@ +```release-note:enhancement +Addon "Compute Engine persistent disk CSI Driver" for Google Kubernetes Engine cluster `google_container_cluster` +``` diff --git a/website/docs/r/container_cluster.html.markdown b/website/docs/r/container_cluster.html.markdown index bbf40a393d5..8a95afaa186 100644 --- a/website/docs/r/container_cluster.html.markdown +++ b/website/docs/r/container_cluster.html.markdown @@ -324,14 +324,17 @@ The `addons_config` block supports: * `cloudrun_config` - (Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html)). The status of the CloudRun addon. It requires `istio_config` enabled. It is disabled by default. Set `disabled = false` to enable. This addon can only be enabled at cluster creation time. - + * `dns_cache_config` - (Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html)). The status of the NodeLocal DNSCache addon. It is disabled by default. - Set `enabled = true` to enable. - + Set `enabled = true` to enable. + **Enabling/Disabling NodeLocal DNSCache in an existing cluster is a disruptive operation. All cluster nodes running GKE 1.15 and higher are recreated.** +* `gce_persistent_disk_csi_driver_config` - (Optional, [Beta](https://terraform.io/docs/providers/google/guides/provider_versions.html)). + Whether this cluster should enable the Google Compute Engine Persistent Disk Container Storage Interface (CSI) Driver. Defaults to disabled; set `enabled = true` to enable. + This example `addons_config` disables two addons: ```hcl