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
Copy file name to clipboardExpand all lines: docs/upgrading_to_v13.0.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,3 +35,41 @@ module. This release adapts to this requirement.
35
35
The yaml contents are rendered dynamically and passed via STDIN which fixes errors due to `operator_cr.yaml` file not being present between ephemeral pipeline runs.
36
36
37
37
This is destructive and will result in deletion and recreation of the ACM operator.
38
+
39
+
### Wait for cluster script removed
40
+
41
+
[wait-for-cluster.sh](https://github.com/terraform-google-modules/terraform-google-kubernetes-engine/blob/2c4a2b11b9be01c392c9d3a0c5c720973dbffebf/cluster.tf#L323) used to ensure that the cluster is in a ready state has been removed due to [improvements](https://github.com/terraform-google-modules/terraform-google-kubernetes-engine/issues/800) in the provider. As part of the upgrade, Terraform might indicate that the `wait_for_cluster` null_resource must be destroyed. This is no-op and can be safely applied:
42
+
43
+
```
44
+
# module.example.module.gke.module.gcloud_wait_for_cluster.null_resource.module_depends_on[0] will be destroyed
45
+
- resource "null_resource" "module_depends_on" {
46
+
- id = "8092231570921454387" -> null
47
+
- triggers = {
48
+
- "value" = "2"
49
+
} -> null
50
+
}
51
+
52
+
# module.example.module.gke.module.gcloud_wait_for_cluster.null_resource.run_command[0] will be destroyed
0 commit comments