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
fix: set CLOUD_DNS as provider for gke autopilot cluster
> Starting in August 2023, the default DNS provider for your new GKE Autopilot
> clusters using version 1.25.9-gke.400 or later and 1.26.4-gke.500 or later
> becomes Cloud DNS, at no extra charge. This change will be gradual and
> expected to be completed by Aug 12th.
Without this change, the default setting `PROVIDER_UNSPECIFIED` for
`dns_config.cluster_dns` is used with the `google_container_cluster`
ressource.
Thus running terraform apply to update parts of an deployment will
always recreate the cluster:
```
- dns_config { # forces replacement
- cluster_dns = "CLOUD_DNS" -> null
- cluster_dns_domain = "cluster.local" -> null
- cluster_dns_scope = "CLUSTER_SCOPE" -> null
}
```
0 commit comments