Skip to content

Commit

Permalink
Add note about node pool taints
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed Sep 25, 2019
1 parent 229f785 commit 604c82b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/upgrading_to_v5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ release.

## Migration Instructions

### Node pool taints
Previously, node pool taints could be set on all module versions.

Now, to set taints you must use the beta version of the module.

```diff
module "kubernetes_engine_private_cluster" {
- source = "terraform-google-modules/kubernetes-engine/google"
+ source = "terraform-google-modules/kubernetes-engine/google//modules/beta-public-cluster"
- version = "~> 4.0"
+ version = "~> 5.0"
}
```

### Resource simplification
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.

Expand Down

0 comments on commit 604c82b

Please sign in to comment.