Skip to content

Commit 604c82b

Browse files
committed
Add note about node pool taints
1 parent 229f785 commit 604c82b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/upgrading_to_v5.0.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ release.
55

66
## Migration Instructions
77

8+
### Node pool taints
9+
Previously, node pool taints could be set on all module versions.
10+
11+
Now, to set taints you must use the beta version of the module.
12+
13+
```diff
14+
module "kubernetes_engine_private_cluster" {
15+
- source = "terraform-google-modules/kubernetes-engine/google"
16+
+ source = "terraform-google-modules/kubernetes-engine/google//modules/beta-public-cluster"
17+
- version = "~> 4.0"
18+
+ version = "~> 5.0"
19+
}
20+
```
21+
822
### Resource simplification
923
The `google_container_cluster` and `google_container_node_pool` resources previously were different between regional and zonal clusters. They have now been collapsed into a single resource using the `location` variable.
1024

0 commit comments

Comments
 (0)